/Volumes/compiler/apple/swift/include/swift/AST/RequestCache.h
Line | Count | Source (jump to first uncovered line) |
1 | | //===--- RequestCache.h - Per-request caching ----------------- -*- C++ -*-===// |
2 | | // |
3 | | // This source file is part of the Swift.org open source project |
4 | | // |
5 | | // Copyright (c) 2014 - 2020 Apple Inc. and the Swift project authors |
6 | | // Licensed under Apache License v2.0 with Runtime Library Exception |
7 | | // |
8 | | // See https://swift.org/LICENSE.txt for license information |
9 | | // See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors |
10 | | // |
11 | | //===----------------------------------------------------------------------===// |
12 | | // |
13 | | // This file defines data structures to efficiently support the request |
14 | | // evaluator's per-request caching and dependency tracking maps. |
15 | | // |
16 | | //===----------------------------------------------------------------------===// |
17 | | |
18 | | #include "swift/AST/DependencyCollector.h" |
19 | | #include "llvm/ADT/DenseMap.h" |
20 | | #include "llvm/ADT/StringRef.h" |
21 | | |
22 | | #ifndef SWIFT_AST_REQUEST_CACHE_H |
23 | | #define SWIFT_AST_REQUEST_CACHE_H |
24 | | |
25 | | namespace swift { |
26 | | |
27 | | namespace evaluator { |
28 | | |
29 | | namespace detail { |
30 | | |
31 | | // Remove this when the compiler bumps to C++17. |
32 | | template <typename...> using void_t = void; |
33 | | template<typename T, typename = void_t<>> |
34 | | |
35 | | struct TupleHasDenseMapInfo {}; |
36 | | |
37 | | template <typename... Ts> |
38 | | struct TupleHasDenseMapInfo< |
39 | | std::tuple<Ts...>, |
40 | | void_t<decltype(llvm::DenseMapInfo<Ts>::getEmptyKey)...>> { |
41 | | using type = void_t<>; |
42 | | }; |
43 | | |
44 | | } // end namespace detail |
45 | | |
46 | | namespace { |
47 | | |
48 | | /// Wrapper for a request with additional empty and tombstone states. |
49 | | template<typename Request, typename = detail::void_t<>> |
50 | | class RequestKey { |
51 | | friend struct llvm::DenseMapInfo<RequestKey>; |
52 | | union { |
53 | | char Empty; |
54 | | Request Req; |
55 | | }; |
56 | | |
57 | | enum class StorageKind : uint8_t { |
58 | | Normal, Empty, Tombstone |
59 | | }; |
60 | | StorageKind Kind; |
61 | | |
62 | 207k | static RequestKey getEmpty() { |
63 | 207k | return RequestKey(StorageKind::Empty); |
64 | 207k | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18OptimizedIRRequestEvE8getEmptyEv Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvE8getEmptyEv Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvE8getEmptyEv Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvE8getEmptyEv Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IDEInspectionFileRequestEvE8getEmptyEv Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE8getEmptyEv Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ConstantValueInfoRequestEvE8getEmptyEv Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE8getEmptyEv Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE8getEmptyEv Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE8getEmptyEv Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE8getEmptyEv Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE8getEmptyEv Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE8getEmptyEv Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvE8getEmptyEv IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_12IRGenRequestEvE8getEmptyEv Line | Count | Source | 62 | 5 | static RequestKey getEmpty() { | 63 | 5 | return RequestKey(StorageKind::Empty); | 64 | 5 | } |
Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17LoweredSILRequestEvE8getEmptyEv Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20PublicSymbolsRequestEvE8getEmptyEv Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18GenerateTBDRequestEvE8getEmptyEv Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13APIGenRequestEvE8getEmptyEv SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvE8getEmptyEv Line | Count | Source | 62 | 25 | static RequestKey getEmpty() { | 63 | 25 | return RequestKey(StorageKind::Empty); | 64 | 25 | } |
Unexecuted instantiation: SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParseSILModuleRequestEvE8getEmptyEv Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvE8getEmptyEv Line | Count | Source | 62 | 8 | static RequestKey getEmpty() { | 63 | 8 | return RequestKey(StorageKind::Empty); | 64 | 8 | } |
Unexecuted instantiation: PassManager.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExecuteSILPipelineRequestEvE8getEmptyEv Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvE8getEmptyEv Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvE8getEmptyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvE8getEmptyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ResolveProtocolNameRequestEvE8getEmptyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvE8getEmptyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29CollectOverriddenDeclsRequestEvE8getEmptyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvE8getEmptyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24TypeRelationCheckRequestEvE8getEmptyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DirectOperatorLookupRequestEvE8getEmptyEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvE8getEmptyEv Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvE8getEmptyEv Unexecuted instantiation: ParseSIL.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE8getEmptyEv Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PreCheckResultBuilderRequestEvE8getEmptyEv Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvE8getEmptyEv CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32CompareDeclSpecializationRequestEvE8getEmptyEv Line | Count | Source | 62 | 59 | static RequestKey getEmpty() { | 63 | 59 | return RequestKey(StorageKind::Empty); | 64 | 59 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29EnumElementExprPatternRequestEvE8getEmptyEv Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvE8getEmptyEv Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE8getEmptyEv CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDeclRefinementOfRequestEvE8getEmptyEv Line | Count | Source | 62 | 195 | static RequestKey getEmpty() { | 63 | 195 | return RequestKey(StorageKind::Empty); | 64 | 195 | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18CxxRecordSemanticsEvE8getEmptyEv CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvE8getEmptyEv Line | Count | Source | 62 | 152 | static RequestKey getEmpty() { | 63 | 152 | return RequestKey(StorageKind::Empty); | 64 | 152 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvE8getEmptyEv Line | Count | Source | 62 | 56 | static RequestKey getEmpty() { | 63 | 56 | return RequestKey(StorageKind::Empty); | 64 | 56 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvE8getEmptyEv Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ClosureHasExplicitResultRequestEvE8getEmptyEv DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvE8getEmptyEv Line | Count | Source | 62 | 10 | static RequestKey getEmpty() { | 63 | 10 | return RequestKey(StorageKind::Empty); | 64 | 10 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvE8getEmptyEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvE8getEmptyEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvE8getEmptyEv Unexecuted instantiation: MiscDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE8getEmptyEv Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvE8getEmptyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasIsolatedSelfRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35DistributedModuleIsAvailableRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CheckDistributedFunctionRequestEvE8getEmptyEv TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ValidatePrecedenceGroupRequestEvE8getEmptyEv Line | Count | Source | 62 | 51 | static RequestKey getEmpty() { | 63 | 51 | return RequestKey(StorageKind::Empty); | 64 | 51 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvE8getEmptyEv TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvE8getEmptyEv Line | Count | Source | 62 | 56 | static RequestKey getEmpty() { | 63 | 56 | return RequestKey(StorageKind::Empty); | 64 | 56 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveImplicitMemberRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34TypeCheckObjCImplementationRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvE8getEmptyEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CheckRedeclarationRequestEvE8getEmptyEv Line | Count | Source | 62 | 374 | static RequestKey getEmpty() { | 63 | 374 | return RequestKey(StorageKind::Empty); | 64 | 374 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvE8getEmptyEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ApplyAccessNoteRequestEvE8getEmptyEv Line | Count | Source | 62 | 2.20k | static RequestKey getEmpty() { | 63 | 2.20k | return RequestKey(StorageKind::Empty); | 64 | 2.20k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveImplicitMemberRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DirectOperatorLookupRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvE8getEmptyEv TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18DefaultTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 45 | static RequestKey getEmpty() { | 63 | 45 | return RequestKey(StorageKind::Empty); | 64 | 45 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CompilerPluginLoadRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE8getEmptyEv TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18PatternTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 256 | static RequestKey getEmpty() { | 63 | 256 | return RequestKey(StorageKind::Empty); | 64 | 256 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvE8getEmptyEv TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 68 | static RequestKey getEmpty() { | 63 | 68 | return RequestKey(StorageKind::Empty); | 64 | 68 | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE8getEmptyEv TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvE8getEmptyEv Line | Count | Source | 62 | 193 | static RequestKey getEmpty() { | 63 | 193 | return RequestKey(StorageKind::Empty); | 64 | 193 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27PreCheckFunctionBodyRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperLValuenessRequestEvE8getEmptyEv TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20ExpandAccessorMacrosEvE8getEmptyEv Line | Count | Source | 62 | 209 | static RequestKey getEmpty() { | 63 | 209 | return RequestKey(StorageKind::Empty); | 64 | 209 | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvE8getEmptyEv Unexecuted instantiation: TypeCheckType.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ResolveTypeRequestEvE8getEmptyEv TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26TypeCheckSourceFileRequestEvE8getEmptyEv Line | Count | Source | 62 | 33 | static RequestKey getEmpty() { | 63 | 33 | return RequestKey(StorageKind::Empty); | 64 | 33 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvE8getEmptyEv Line | Count | Source | 62 | 52 | static RequestKey getEmpty() { | 63 | 52 | return RequestKey(StorageKind::Empty); | 64 | 52 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvE8getEmptyEv Line | Count | Source | 62 | 52 | static RequestKey getEmpty() { | 63 | 52 | return RequestKey(StorageKind::Empty); | 64 | 52 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvE8getEmptyEv Line | Count | Source | 62 | 52 | static RequestKey getEmpty() { | 63 | 52 | return RequestKey(StorageKind::Empty); | 64 | 52 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvE8getEmptyEv Line | Count | Source | 62 | 52 | static RequestKey getEmpty() { | 63 | 52 | return RequestKey(StorageKind::Empty); | 64 | 52 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvE8getEmptyEv Line | Count | Source | 62 | 333 | static RequestKey getEmpty() { | 63 | 333 | return RequestKey(StorageKind::Empty); | 64 | 333 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckASTNodeAtLocRequestEvE8getEmptyEv Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvE8getEmptyEv Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ClangRecordMemberLookupEvE8getEmptyEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE8getEmptyEv ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.68k | static RequestKey getEmpty() { | 63 | 1.68k | return RequestKey(StorageKind::Empty); | 64 | 1.68k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvE8getEmptyEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ClangDirectLookupRequestEvE8getEmptyEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ClangRecordMemberLookupEvE8getEmptyEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ClangCategoryLookupRequestEvE8getEmptyEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvE8getEmptyEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvE8getEmptyEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE8getEmptyEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE8getEmptyEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18CxxRecordSemanticsEvE8getEmptyEv Unexecuted instantiation: ImportName.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18IsSafeUseOfCxxDeclEvE8getEmptyEv Unexecuted instantiation: ImportType.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20CxxRecordAsSwiftTypeEvE8getEmptyEv Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvE8getEmptyEv Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IDEInspectionSecondPassRequestEvE8getEmptyEv Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE8getEmptyEv Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvE8getEmptyEv Unexecuted instantiation: AccessRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31TypeDeclsFromWhereClauseRequestEvE8getEmptyEv ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 5.21k | static RequestKey getEmpty() { | 63 | 5.21k | return RequestKey(StorageKind::Empty); | 64 | 5.21k | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvE8getEmptyEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvE8getEmptyEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvE8getEmptyEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvE8getEmptyEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvE8getEmptyEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasIsolatedSelfRequestEvE8getEmptyEv Unexecuted instantiation: ASTPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ClangDirectLookupRequestEvE8getEmptyEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvE8getEmptyEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30TypeEraserHasViableInitRequestEvE8getEmptyEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveTypeEraserTypeRequestEvE8getEmptyEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvE8getEmptyEv Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SpecializeAttrTargetDeclRequestEvE8getEmptyEv Line | Count | Source | 62 | 49 | static RequestKey getEmpty() { | 63 | 49 | return RequestKey(StorageKind::Empty); | 64 | 49 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36SerializeAttrGenericSignatureRequestEvE8getEmptyEv Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvE8getEmptyEv Line | Count | Source | 62 | 53 | static RequestKey getEmpty() { | 63 | 53 | return RequestKey(StorageKind::Empty); | 64 | 53 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvE8getEmptyEv Line | Count | Source | 62 | 50 | static RequestKey getEmpty() { | 63 | 50 | return RequestKey(StorageKind::Empty); | 64 | 50 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29ImplementsAttrProtocolRequestEvE8getEmptyEv Line | Count | Source | 62 | 46 | static RequestKey getEmpty() { | 63 | 46 | return RequestKey(StorageKind::Empty); | 64 | 46 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38InitAccessorReferencedVariablesRequestEvE8getEmptyEv Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33SemanticAvailableRangeAttrRequestEvE8getEmptyEv Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30SemanticUnavailableAttrRequestEvE8getEmptyEv Line | Count | Source | 62 | 961 | static RequestKey getEmpty() { | 63 | 961 | return RequestKey(StorageKind::Empty); | 64 | 961 | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ExpandMemberAttributeMacrosEvE8getEmptyEv Line | Count | Source | 62 | 27.8k | static RequestKey getEmpty() { | 63 | 27.8k | return RequestKey(StorageKind::Empty); | 64 | 27.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvE8getEmptyEv Line | Count | Source | 62 | 8.60k | static RequestKey getEmpty() { | 63 | 8.60k | return RequestKey(StorageKind::Empty); | 64 | 8.60k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvE8getEmptyEv Line | Count | Source | 62 | 9.49k | static RequestKey getEmpty() { | 63 | 9.49k | return RequestKey(StorageKind::Empty); | 64 | 9.49k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ThrownTypeRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsAccessorTransparentRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericParamListRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericSignatureRequestEvE8getEmptyEv Line | Count | Source | 62 | 9.88k | static RequestKey getEmpty() { | 63 | 9.88k | return RequestKey(StorageKind::Empty); | 64 | 9.88k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ScopedImportLookupRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExtendedNominalRequestEvE8getEmptyEv Line | Count | Source | 62 | 21 | static RequestKey getEmpty() { | 63 | 21 | return RequestKey(StorageKind::Empty); | 64 | 21 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 76 | static RequestKey getEmpty() { | 63 | 76 | return RequestKey(StorageKind::Empty); | 64 | 76 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26PatternBindingEntryRequestEvE8getEmptyEv Line | Count | Source | 62 | 62 | static RequestKey getEmpty() { | 63 | 62 | return RequestKey(StorageKind::Empty); | 64 | 62 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30RequiresOpaqueAccessorsRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25SynthesizeAccessorRequestEvE8getEmptyEv Line | Count | Source | 62 | 30 | static RequestKey getEmpty() { | 63 | 30 | return RequestKey(StorageKind::Empty); | 64 | 30 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvE8getEmptyEv Line | Count | Source | 62 | 43 | static RequestKey getEmpty() { | 63 | 43 | return RequestKey(StorageKind::Empty); | 64 | 43 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsGetterMutatingRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsSetterMutatingRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26OpaqueReadOwnershipRequestEvE8getEmptyEv Line | Count | Source | 62 | 65 | static RequestKey getEmpty() { | 63 | 65 | return RequestKey(StorageKind::Empty); | 64 | 65 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvE8getEmptyEv Line | Count | Source | 62 | 97 | static RequestKey getEmpty() { | 63 | 97 | return RequestKey(StorageKind::Empty); | 64 | 97 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13IsObjCRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsFinalRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17IsMoveOnlyRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16IsDynamicRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30DynamicallyReplacedDeclRequestEvE8getEmptyEv Line | Count | Source | 62 | 4.69k | static RequestKey getEmpty() { | 63 | 4.69k | return RequestKey(StorageKind::Empty); | 64 | 4.69k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InterfaceTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 31.6k | static RequestKey getEmpty() { | 63 | 31.6k | return RequestKey(StorageKind::Empty); | 64 | 31.6k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18AccessLevelRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23StoredPropertiesRequestEvE8getEmptyEv Line | Count | Source | 62 | 10.4k | static RequestKey getEmpty() { | 63 | 10.4k | return RequestKey(StorageKind::Empty); | 64 | 10.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29InitAccessorPropertiesRequestEvE8getEmptyEv Line | Count | Source | 62 | 82 | static RequestKey getEmpty() { | 63 | 82 | return RequestKey(StorageKind::Empty); | 64 | 82 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31MemberwiseInitPropertiesRequestEvE8getEmptyEv Line | Count | Source | 62 | 82 | static RequestKey getEmpty() { | 63 | 82 | return RequestKey(StorageKind::Empty); | 64 | 82 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvE8getEmptyEv Line | Count | Source | 62 | 26 | static RequestKey getEmpty() { | 63 | 26 | return RequestKey(StorageKind::Empty); | 64 | 26 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30PropertyWrapperTypeInfoRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsActorRequestEvE8getEmptyEv Line | Count | Source | 62 | 6.30k | static RequestKey getEmpty() { | 63 | 6.30k | return RequestKey(StorageKind::Empty); | 64 | 6.30k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDistributedActorRequestEvE8getEmptyEv Line | Count | Source | 62 | 4.24k | static RequestKey getEmpty() { | 63 | 4.24k | return RequestKey(StorageKind::Empty); | 64 | 4.24k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21UnderlyingTypeRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21StructuralTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 914 | static RequestKey getEmpty() { | 63 | 914 | return RequestKey(StorageKind::Empty); | 64 | 914 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28DefaultDefinitionTypeRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18EnumRawTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 569 | static RequestKey getEmpty() { | 63 | 569 | return RequestKey(StorageKind::Empty); | 64 | 569 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24HasMemberwiseInitRequestEvE8getEmptyEv Line | Count | Source | 62 | 124 | static RequestKey getEmpty() { | 63 | 124 | return RequestKey(StorageKind::Empty); | 64 | 124 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SynthesizeMemberwiseInitRequestEvE8getEmptyEv Line | Count | Source | 62 | 68 | static RequestKey getEmpty() { | 63 | 68 | return RequestKey(StorageKind::Empty); | 64 | 68 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvE8getEmptyEv Line | Count | Source | 62 | 129 | static RequestKey getEmpty() { | 63 | 129 | return RequestKey(StorageKind::Empty); | 64 | 129 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21HasDefaultInitRequestEvE8getEmptyEv Line | Count | Source | 62 | 117 | static RequestKey getEmpty() { | 63 | 117 | return RequestKey(StorageKind::Empty); | 64 | 117 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28SynthesizeDefaultInitRequestEvE8getEmptyEv Line | Count | Source | 62 | 21 | static RequestKey getEmpty() { | 63 | 21 | return RequestKey(StorageKind::Empty); | 64 | 21 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GlobalActorInstanceRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20GetDestructorRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21IsDefaultActorRequestEvE8getEmptyEv Line | Count | Source | 62 | 25 | static RequestKey getEmpty() { | 63 | 25 | return RequestKey(StorageKind::Empty); | 64 | 25 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39HasMissingDesignatedInitializersRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37InheritsSuperclassInitializersRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ClassAncestryFlagsRequestEvE8getEmptyEv Line | Count | Source | 62 | 54 | static RequestKey getEmpty() { | 63 | 54 | return RequestKey(StorageKind::Empty); | 64 | 54 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvE8getEmptyEv Line | Count | Source | 62 | 7 | static RequestKey getEmpty() { | 63 | 7 | return RequestKey(StorageKind::Empty); | 64 | 7 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25InheritedProtocolsRequestEvE8getEmptyEv Line | Count | Source | 62 | 130 | static RequestKey getEmpty() { | 63 | 130 | return RequestKey(StorageKind::Empty); | 64 | 130 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolRequirementsRequestEvE8getEmptyEv Line | Count | Source | 62 | 13 | static RequestKey getEmpty() { | 63 | 13 | return RequestKey(StorageKind::Empty); | 64 | 13 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassTypeRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProtocolRequiresClassRequestEvE8getEmptyEv Line | Count | Source | 62 | 11 | static RequestKey getEmpty() { | 63 | 11 | return RequestKey(StorageKind::Empty); | 64 | 11 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ExistentialConformsToSelfRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29PrimaryAssociatedTypesRequestEvE8getEmptyEv Line | Count | Source | 62 | 8 | static RequestKey getEmpty() { | 63 | 8 | return RequestKey(StorageKind::Empty); | 64 | 8 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29StructuralRequirementsRequestEvE8getEmptyEv Line | Count | Source | 62 | 32 | static RequestKey getEmpty() { | 63 | 32 | return RequestKey(StorageKind::Empty); | 64 | 32 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeAliasRequirementsRequestEvE8getEmptyEv Line | Count | Source | 62 | 25 | static RequestKey getEmpty() { | 63 | 25 | return RequestKey(StorageKind::Empty); | 64 | 25 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolDependenciesRequestEvE8getEmptyEv Line | Count | Source | 62 | 3.04k | static RequestKey getEmpty() { | 63 | 3.04k | return RequestKey(StorageKind::Empty); | 64 | 3.04k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27RequirementSignatureRequestEvE8getEmptyEv Line | Count | Source | 62 | 367 | static RequestKey getEmpty() { | 63 | 367 | return RequestKey(StorageKind::Empty); | 64 | 367 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvE8getEmptyEv Line | Count | Source | 62 | 14 | static RequestKey getEmpty() { | 63 | 14 | return RequestKey(StorageKind::Empty); | 64 | 14 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvE8getEmptyEv Line | Count | Source | 62 | 2.93k | static RequestKey getEmpty() { | 63 | 2.93k | return RequestKey(StorageKind::Empty); | 64 | 2.93k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22StorageImplInfoRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24SetterAccessLevelRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasInitAccessorRequestEvE8getEmptyEv Line | Count | Source | 62 | 2.83k | static RequestKey getEmpty() { | 63 | 2.83k | return RequestKey(StorageKind::Empty); | 64 | 2.83k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvE8getEmptyEv Line | Count | Source | 62 | 14.2k | static RequestKey getEmpty() { | 63 | 14.2k | return RequestKey(StorageKind::Empty); | 64 | 14.2k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20NamingPatternRequestEvE8getEmptyEv Line | Count | Source | 62 | 51 | static RequestKey getEmpty() { | 63 | 51 | return RequestKey(StorageKind::Empty); | 64 | 51 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParamSpecifierRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvE8getEmptyEv Line | Count | Source | 62 | 17.3k | static RequestKey getEmpty() { | 63 | 17.3k | return RequestKey(StorageKind::Empty); | 64 | 17.3k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 66 | static RequestKey getEmpty() { | 63 | 66 | return RequestKey(StorageKind::Empty); | 64 | 66 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 66 | static RequestKey getEmpty() { | 63 | 66 | return RequestKey(StorageKind::Empty); | 64 | 66 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvE8getEmptyEv Line | Count | Source | 62 | 138 | static RequestKey getEmpty() { | 63 | 138 | return RequestKey(StorageKind::Empty); | 64 | 138 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvE8getEmptyEv Line | Count | Source | 62 | 143 | static RequestKey getEmpty() { | 63 | 143 | return RequestKey(StorageKind::Empty); | 64 | 143 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperMutabilityRequestEvE8getEmptyEv Line | Count | Source | 62 | 199 | static RequestKey getEmpty() { | 63 | 199 | return RequestKey(StorageKind::Empty); | 64 | 199 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DefaultArgumentInitContextRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentExprRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentTypeRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResultBuilderTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 378 | static RequestKey getEmpty() { | 63 | 378 | return RequestKey(StorageKind::Empty); | 64 | 378 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AttachedResultBuilderRequestEvE8getEmptyEv Line | Count | Source | 62 | 663 | static RequestKey getEmpty() { | 63 | 663 | return RequestKey(StorageKind::Empty); | 64 | 663 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ResultTypeRequestEvE8getEmptyEv Line | Count | Source | 62 | 737 | static RequestKey getEmpty() { | 63 | 737 | return RequestKey(StorageKind::Empty); | 64 | 737 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ParseAbstractFunctionBodyRequestEvE8getEmptyEv Line | Count | Source | 62 | 489 | static RequestKey getEmpty() { | 63 | 489 | return RequestKey(StorageKind::Empty); | 64 | 489 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckFunctionBodyRequestEvE8getEmptyEv Line | Count | Source | 62 | 250 | static RequestKey getEmpty() { | 63 | 250 | return RequestKey(StorageKind::Empty); | 64 | 250 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsFunctionBodySkippedRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26NeedsNewVTableEntryRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvE8getEmptyEv Line | Count | Source | 62 | 4.93k | static RequestKey getEmpty() { | 63 | 4.93k | return RequestKey(StorageKind::Empty); | 64 | 4.93k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15IsStaticRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19SimpleDidSetRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SelfAccessKindRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20EnumRawValuesRequestEvE8getEmptyEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.12k | static RequestKey getEmpty() { | 63 | 1.12k | return RequestKey(StorageKind::Empty); | 64 | 1.12k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvE8getEmptyEv Line | Count | Source | 62 | 21 | static RequestKey getEmpty() { | 63 | 21 | return RequestKey(StorageKind::Empty); | 64 | 21 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvE8getEmptyEv Line | Count | Source | 62 | 219 | static RequestKey getEmpty() { | 63 | 219 | return RequestKey(StorageKind::Empty); | 64 | 219 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ActorIsolationRequestEvE8getEmptyEv Line | Count | Source | 62 | 7.79k | static RequestKey getEmpty() { | 63 | 7.79k | return RequestKey(StorageKind::Empty); | 64 | 7.79k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvE8getEmptyEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveImplicitMemberRequestEvE8getEmptyEv DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26FragileFunctionKindRequestEvE8getEmptyEv Line | Count | Source | 62 | 1.02k | static RequestKey getEmpty() { | 63 | 1.02k | return RequestKey(StorageKind::Empty); | 64 | 1.02k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvE8getEmptyEv Line | Count | Source | 62 | 936 | static RequestKey getEmpty() { | 63 | 936 | return RequestKey(StorageKind::Empty); | 64 | 936 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ABIMembersRequestEvE8getEmptyEv Line | Count | Source | 62 | 186 | static RequestKey getEmpty() { | 63 | 186 | return RequestKey(StorageKind::Empty); | 64 | 186 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17AllMembersRequestEvE8getEmptyEv Line | Count | Source | 62 | 56 | static RequestKey getEmpty() { | 63 | 56 | return RequestKey(StorageKind::Empty); | 64 | 56 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvE8getEmptyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvE8getEmptyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvE8getEmptyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvE8getEmptyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvE8getEmptyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetDistributedThunkRequestEvE8getEmptyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvE8getEmptyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36GetDistributedActorIDPropertyRequestEvE8getEmptyEv Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27SemanticBriefCommentRequestEvE8getEmptyEv Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36PolymorphicEffectRequirementsRequestEvE8getEmptyEv Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PolymorphicEffectKindRequestEvE8getEmptyEv Line | Count | Source | 62 | 381 | static RequestKey getEmpty() { | 63 | 381 | return RequestKey(StorageKind::Empty); | 64 | 381 | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ConformanceHasEffectRequestEvE8getEmptyEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CallerSideDefaultArgExprRequestEvE8getEmptyEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE8getEmptyEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvE8getEmptyEv GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvE8getEmptyEv Line | Count | Source | 62 | 202 | static RequestKey getEmpty() { | 63 | 202 | return RequestKey(StorageKind::Empty); | 64 | 202 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22IsNonUserModuleRequestEvE8getEmptyEv Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleImplicitImportsRequestEvE8getEmptyEv Line | Count | Source | 62 | 59 | static RequestKey getEmpty() { | 63 | 59 | return RequestKey(StorageKind::Empty); | 64 | 59 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PrimarySourceFilesRequestEvE8getEmptyEv Line | Count | Source | 62 | 72 | static RequestKey getEmpty() { | 63 | 72 | return RequestKey(StorageKind::Empty); | 64 | 72 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvE8getEmptyEv Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvE8getEmptyEv Line | Count | Source | 62 | 4.78k | static RequestKey getEmpty() { | 63 | 4.78k | return RequestKey(StorageKind::Empty); | 64 | 4.78k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetImplicitSendableRequestEvE8getEmptyEv Line | Count | Source | 62 | 200 | static RequestKey getEmpty() { | 63 | 200 | return RequestKey(StorageKind::Empty); | 64 | 200 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvE8getEmptyEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvE8getEmptyEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29HasImportsMatchingFlagRequestEvE8getEmptyEv Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16SPIGroupsRequestEvE8getEmptyEv Line | Count | Source | 62 | 7.03k | static RequestKey getEmpty() { | 63 | 7.03k | return RequestKey(StorageKind::Empty); | 64 | 7.03k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ModuleLibraryLevelRequestEvE8getEmptyEv Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvE8getEmptyEv Line | Count | Source | 62 | 139 | static RequestKey getEmpty() { | 63 | 139 | return RequestKey(StorageKind::Empty); | 64 | 139 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExportedSourceFileRequestEvE8getEmptyEv Line | Count | Source | 62 | 56 | static RequestKey getEmpty() { | 63 | 56 | return RequestKey(StorageKind::Empty); | 64 | 56 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22GetSourceFileAsyncNodeEvE8getEmptyEv Line | Count | Source | 62 | 20 | static RequestKey getEmpty() { | 63 | 20 | return RequestKey(StorageKind::Empty); | 64 | 20 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32LookupConformanceInModuleRequestEvE8getEmptyEv Unexecuted instantiation: ModuleNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21LookupInModuleRequestEvE8getEmptyEv NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvE8getEmptyEv Line | Count | Source | 62 | 147 | static RequestKey getEmpty() { | 63 | 147 | return RequestKey(StorageKind::Empty); | 64 | 147 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvE8getEmptyEv NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvE8getEmptyEv Line | Count | Source | 62 | 2.98k | static RequestKey getEmpty() { | 63 | 2.98k | return RequestKey(StorageKind::Empty); | 64 | 2.98k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsCallAsFunctionNominalRequestEvE8getEmptyEv NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvE8getEmptyEv Line | Count | Source | 62 | 299 | static RequestKey getEmpty() { | 63 | 299 | return RequestKey(StorageKind::Empty); | 64 | 299 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32SelfBoundsFromWhereClauseRequestEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37SelfBoundsFromGenericSignatureRequestEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19DirectLookupRequestEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CXXNamespaceMemberLookupEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ClangRecordMemberLookupEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22AnyObjectLookupRequestEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22QualifiedLookupRequestEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleQualifiedLookupRequestEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36UnderlyingTypeDeclsReferencedRequestEvE8getEmptyEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InheritedDeclsReferencedRequestEvE8getEmptyEv OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LookupInfixOperatorRequestEvE8getEmptyEv Line | Count | Source | 62 | 59 | static RequestKey getEmpty() { | 63 | 59 | return RequestKey(StorageKind::Empty); | 64 | 59 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27LookupPrefixOperatorRequestEvE8getEmptyEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPostfixOperatorRequestEvE8getEmptyEv OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPrecedenceGroupRequestEvE8getEmptyEv Line | Count | Source | 62 | 31 | static RequestKey getEmpty() { | 63 | 31 | return RequestKey(StorageKind::Empty); | 64 | 31 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DirectOperatorLookupRequestEvE8getEmptyEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvE8getEmptyEv Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ExprPatternMatchRequestEvE8getEmptyEv ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ConditionalRequirementsRequestEvE8getEmptyEv Line | Count | Source | 62 | 979 | static RequestKey getEmpty() { | 63 | 979 | return RequestKey(StorageKind::Empty); | 64 | 979 | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18TypeWitnessRequestEvE8getEmptyEv Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AssociatedConformanceRequestEvE8getEmptyEv Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ValueWitnessRequestEvE8getEmptyEv ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37LookupAllConformancesInContextRequestEvE8getEmptyEv Line | Count | Source | 62 | 557 | static RequestKey getEmpty() { | 63 | 557 | return RequestKey(StorageKind::Empty); | 64 | 557 | } |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17RawCommentRequestEvE8getEmptyEv Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvE8getEmptyEv Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IsSingleValueStmtRequestEvE8getEmptyEv Line | Count | Source | 62 | 154 | static RequestKey getEmpty() { | 63 | 154 | return RequestKey(StorageKind::Empty); | 64 | 154 | } |
Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18BreakTargetRequestEvE8getEmptyEv Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ContinueTargetRequestEvE8getEmptyEv TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RequirementRequestEvE8getEmptyEv Line | Count | Source | 62 | 126 | static RequestKey getEmpty() { | 63 | 126 | return RequestKey(StorageKind::Empty); | 64 | 126 | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvE8getEmptyEv Line | Count | Source | 62 | 132 | static RequestKey getEmpty() { | 63 | 132 | return RequestKey(StorageKind::Empty); | 64 | 132 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvE8getEmptyEv |
65 | 177k | static RequestKey getTombstone() { |
66 | 177k | return RequestKey(StorageKind::Tombstone); |
67 | 177k | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18OptimizedIRRequestEvE12getTombstoneEv Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvE12getTombstoneEv Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvE12getTombstoneEv Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvE12getTombstoneEv Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IDEInspectionFileRequestEvE12getTombstoneEv Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE12getTombstoneEv Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ConstantValueInfoRequestEvE12getTombstoneEv Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE12getTombstoneEv Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE12getTombstoneEv Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE12getTombstoneEv Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE12getTombstoneEv Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE12getTombstoneEv Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE12getTombstoneEv Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvE12getTombstoneEv IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_12IRGenRequestEvE12getTombstoneEv Line | Count | Source | 65 | 3 | static RequestKey getTombstone() { | 66 | 3 | return RequestKey(StorageKind::Tombstone); | 67 | 3 | } |
Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17LoweredSILRequestEvE12getTombstoneEv Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20PublicSymbolsRequestEvE12getTombstoneEv Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18GenerateTBDRequestEvE12getTombstoneEv Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13APIGenRequestEvE12getTombstoneEv SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvE12getTombstoneEv Line | Count | Source | 65 | 15 | static RequestKey getTombstone() { | 66 | 15 | return RequestKey(StorageKind::Tombstone); | 67 | 15 | } |
Unexecuted instantiation: SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParseSILModuleRequestEvE12getTombstoneEv Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvE12getTombstoneEv Line | Count | Source | 65 | 8 | static RequestKey getTombstone() { | 66 | 8 | return RequestKey(StorageKind::Tombstone); | 67 | 8 | } |
Unexecuted instantiation: PassManager.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExecuteSILPipelineRequestEvE12getTombstoneEv Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvE12getTombstoneEv Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvE12getTombstoneEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvE12getTombstoneEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ResolveProtocolNameRequestEvE12getTombstoneEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvE12getTombstoneEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29CollectOverriddenDeclsRequestEvE12getTombstoneEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvE12getTombstoneEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24TypeRelationCheckRequestEvE12getTombstoneEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DirectOperatorLookupRequestEvE12getTombstoneEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvE12getTombstoneEv Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvE12getTombstoneEv Unexecuted instantiation: ParseSIL.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE12getTombstoneEv Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PreCheckResultBuilderRequestEvE12getTombstoneEv Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvE12getTombstoneEv CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32CompareDeclSpecializationRequestEvE12getTombstoneEv Line | Count | Source | 65 | 42 | static RequestKey getTombstone() { | 66 | 42 | return RequestKey(StorageKind::Tombstone); | 67 | 42 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29EnumElementExprPatternRequestEvE12getTombstoneEv Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvE12getTombstoneEv Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE12getTombstoneEv CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDeclRefinementOfRequestEvE12getTombstoneEv Line | Count | Source | 65 | 140 | static RequestKey getTombstone() { | 66 | 140 | return RequestKey(StorageKind::Tombstone); | 67 | 140 | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18CxxRecordSemanticsEvE12getTombstoneEv CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvE12getTombstoneEv Line | Count | Source | 65 | 102 | static RequestKey getTombstone() { | 66 | 102 | return RequestKey(StorageKind::Tombstone); | 67 | 102 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvE12getTombstoneEv Line | Count | Source | 65 | 34 | static RequestKey getTombstone() { | 66 | 34 | return RequestKey(StorageKind::Tombstone); | 67 | 34 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvE12getTombstoneEv Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ClosureHasExplicitResultRequestEvE12getTombstoneEv DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvE12getTombstoneEv Line | Count | Source | 65 | 5 | static RequestKey getTombstone() { | 66 | 5 | return RequestKey(StorageKind::Tombstone); | 67 | 5 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvE12getTombstoneEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvE12getTombstoneEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvE12getTombstoneEv Unexecuted instantiation: MiscDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE12getTombstoneEv Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvE12getTombstoneEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasIsolatedSelfRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35DistributedModuleIsAvailableRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CheckDistributedFunctionRequestEvE12getTombstoneEv TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ValidatePrecedenceGroupRequestEvE12getTombstoneEv Line | Count | Source | 65 | 30 | static RequestKey getTombstone() { | 66 | 30 | return RequestKey(StorageKind::Tombstone); | 67 | 30 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvE12getTombstoneEv TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvE12getTombstoneEv Line | Count | Source | 65 | 36 | static RequestKey getTombstone() { | 66 | 36 | return RequestKey(StorageKind::Tombstone); | 67 | 36 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveImplicitMemberRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34TypeCheckObjCImplementationRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvE12getTombstoneEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CheckRedeclarationRequestEvE12getTombstoneEv Line | Count | Source | 65 | 274 | static RequestKey getTombstone() { | 66 | 274 | return RequestKey(StorageKind::Tombstone); | 67 | 274 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvE12getTombstoneEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ApplyAccessNoteRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.74k | static RequestKey getTombstone() { | 66 | 1.74k | return RequestKey(StorageKind::Tombstone); | 67 | 1.74k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveImplicitMemberRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DirectOperatorLookupRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvE12getTombstoneEv TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18DefaultTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 42 | static RequestKey getTombstone() { | 66 | 42 | return RequestKey(StorageKind::Tombstone); | 67 | 42 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CompilerPluginLoadRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE12getTombstoneEv TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18PatternTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 181 | static RequestKey getTombstone() { | 66 | 181 | return RequestKey(StorageKind::Tombstone); | 67 | 181 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvE12getTombstoneEv TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 34 | static RequestKey getTombstone() { | 66 | 34 | return RequestKey(StorageKind::Tombstone); | 67 | 34 | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE12getTombstoneEv TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvE12getTombstoneEv Line | Count | Source | 65 | 124 | static RequestKey getTombstone() { | 66 | 124 | return RequestKey(StorageKind::Tombstone); | 67 | 124 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27PreCheckFunctionBodyRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperLValuenessRequestEvE12getTombstoneEv TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20ExpandAccessorMacrosEvE12getTombstoneEv Line | Count | Source | 65 | 136 | static RequestKey getTombstone() { | 66 | 136 | return RequestKey(StorageKind::Tombstone); | 67 | 136 | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvE12getTombstoneEv Unexecuted instantiation: TypeCheckType.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ResolveTypeRequestEvE12getTombstoneEv TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26TypeCheckSourceFileRequestEvE12getTombstoneEv Line | Count | Source | 65 | 21 | static RequestKey getTombstone() { | 66 | 21 | return RequestKey(StorageKind::Tombstone); | 67 | 21 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 26 | static RequestKey getTombstone() { | 66 | 26 | return RequestKey(StorageKind::Tombstone); | 67 | 26 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 26 | static RequestKey getTombstone() { | 66 | 26 | return RequestKey(StorageKind::Tombstone); | 67 | 26 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvE12getTombstoneEv Line | Count | Source | 65 | 26 | static RequestKey getTombstone() { | 66 | 26 | return RequestKey(StorageKind::Tombstone); | 67 | 26 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 26 | static RequestKey getTombstone() { | 66 | 26 | return RequestKey(StorageKind::Tombstone); | 67 | 26 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvE12getTombstoneEv Line | Count | Source | 65 | 200 | static RequestKey getTombstone() { | 66 | 200 | return RequestKey(StorageKind::Tombstone); | 67 | 200 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckASTNodeAtLocRequestEvE12getTombstoneEv Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvE12getTombstoneEv Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ClangRecordMemberLookupEvE12getTombstoneEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE12getTombstoneEv ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvE12getTombstoneEv Line | Count | Source | 65 | 1.10k | static RequestKey getTombstone() { | 66 | 1.10k | return RequestKey(StorageKind::Tombstone); | 67 | 1.10k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvE12getTombstoneEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ClangDirectLookupRequestEvE12getTombstoneEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ClangRecordMemberLookupEvE12getTombstoneEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ClangCategoryLookupRequestEvE12getTombstoneEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvE12getTombstoneEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvE12getTombstoneEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE12getTombstoneEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE12getTombstoneEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18CxxRecordSemanticsEvE12getTombstoneEv Unexecuted instantiation: ImportName.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18IsSafeUseOfCxxDeclEvE12getTombstoneEv Unexecuted instantiation: ImportType.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20CxxRecordAsSwiftTypeEvE12getTombstoneEv Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvE12getTombstoneEv Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IDEInspectionSecondPassRequestEvE12getTombstoneEv Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE12getTombstoneEv Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvE12getTombstoneEv Unexecuted instantiation: AccessRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31TypeDeclsFromWhereClauseRequestEvE12getTombstoneEv ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 3.54k | static RequestKey getTombstone() { | 66 | 3.54k | return RequestKey(StorageKind::Tombstone); | 67 | 3.54k | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvE12getTombstoneEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvE12getTombstoneEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvE12getTombstoneEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvE12getTombstoneEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvE12getTombstoneEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasIsolatedSelfRequestEvE12getTombstoneEv Unexecuted instantiation: ASTPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ClangDirectLookupRequestEvE12getTombstoneEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvE12getTombstoneEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30TypeEraserHasViableInitRequestEvE12getTombstoneEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveTypeEraserTypeRequestEvE12getTombstoneEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvE12getTombstoneEv Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SpecializeAttrTargetDeclRequestEvE12getTombstoneEv Line | Count | Source | 65 | 32 | static RequestKey getTombstone() { | 66 | 32 | return RequestKey(StorageKind::Tombstone); | 67 | 32 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36SerializeAttrGenericSignatureRequestEvE12getTombstoneEv Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvE12getTombstoneEv Line | Count | Source | 65 | 40 | static RequestKey getTombstone() { | 66 | 40 | return RequestKey(StorageKind::Tombstone); | 67 | 40 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvE12getTombstoneEv Line | Count | Source | 65 | 37 | static RequestKey getTombstone() { | 66 | 37 | return RequestKey(StorageKind::Tombstone); | 67 | 37 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29ImplementsAttrProtocolRequestEvE12getTombstoneEv Line | Count | Source | 65 | 24 | static RequestKey getTombstone() { | 66 | 24 | return RequestKey(StorageKind::Tombstone); | 67 | 24 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38InitAccessorReferencedVariablesRequestEvE12getTombstoneEv Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33SemanticAvailableRangeAttrRequestEvE12getTombstoneEv Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30SemanticUnavailableAttrRequestEvE12getTombstoneEv Line | Count | Source | 65 | 779 | static RequestKey getTombstone() { | 66 | 779 | return RequestKey(StorageKind::Tombstone); | 67 | 779 | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ExpandMemberAttributeMacrosEvE12getTombstoneEv Line | Count | Source | 65 | 22.2k | static RequestKey getTombstone() { | 66 | 22.2k | return RequestKey(StorageKind::Tombstone); | 67 | 22.2k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvE12getTombstoneEv Line | Count | Source | 65 | 6.75k | static RequestKey getTombstone() { | 66 | 6.75k | return RequestKey(StorageKind::Tombstone); | 67 | 6.75k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 8.30k | static RequestKey getTombstone() { | 66 | 8.30k | return RequestKey(StorageKind::Tombstone); | 67 | 8.30k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ThrownTypeRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsAccessorTransparentRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericParamListRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericSignatureRequestEvE12getTombstoneEv Line | Count | Source | 65 | 9.85k | static RequestKey getTombstone() { | 66 | 9.85k | return RequestKey(StorageKind::Tombstone); | 67 | 9.85k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ScopedImportLookupRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExtendedNominalRequestEvE12getTombstoneEv Line | Count | Source | 65 | 13 | static RequestKey getTombstone() { | 66 | 13 | return RequestKey(StorageKind::Tombstone); | 67 | 13 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 68 | static RequestKey getTombstone() { | 66 | 68 | return RequestKey(StorageKind::Tombstone); | 67 | 68 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26PatternBindingEntryRequestEvE12getTombstoneEv Line | Count | Source | 65 | 31 | static RequestKey getTombstone() { | 66 | 31 | return RequestKey(StorageKind::Tombstone); | 67 | 31 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30RequiresOpaqueAccessorsRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25SynthesizeAccessorRequestEvE12getTombstoneEv Line | Count | Source | 65 | 15 | static RequestKey getTombstone() { | 66 | 15 | return RequestKey(StorageKind::Tombstone); | 67 | 15 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvE12getTombstoneEv Line | Count | Source | 65 | 35 | static RequestKey getTombstone() { | 66 | 35 | return RequestKey(StorageKind::Tombstone); | 67 | 35 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsGetterMutatingRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsSetterMutatingRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26OpaqueReadOwnershipRequestEvE12getTombstoneEv Line | Count | Source | 65 | 50 | static RequestKey getTombstone() { | 66 | 50 | return RequestKey(StorageKind::Tombstone); | 67 | 50 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 93 | static RequestKey getTombstone() { | 66 | 93 | return RequestKey(StorageKind::Tombstone); | 67 | 93 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13IsObjCRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsFinalRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17IsMoveOnlyRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16IsDynamicRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30DynamicallyReplacedDeclRequestEvE12getTombstoneEv Line | Count | Source | 65 | 3.64k | static RequestKey getTombstone() { | 66 | 3.64k | return RequestKey(StorageKind::Tombstone); | 67 | 3.64k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InterfaceTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 31.4k | static RequestKey getTombstone() { | 66 | 31.4k | return RequestKey(StorageKind::Tombstone); | 67 | 31.4k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18AccessLevelRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23StoredPropertiesRequestEvE12getTombstoneEv Line | Count | Source | 65 | 10.3k | static RequestKey getTombstone() { | 66 | 10.3k | return RequestKey(StorageKind::Tombstone); | 67 | 10.3k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29InitAccessorPropertiesRequestEvE12getTombstoneEv Line | Count | Source | 65 | 58 | static RequestKey getTombstone() { | 66 | 58 | return RequestKey(StorageKind::Tombstone); | 67 | 58 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31MemberwiseInitPropertiesRequestEvE12getTombstoneEv Line | Count | Source | 65 | 55 | static RequestKey getTombstone() { | 66 | 55 | return RequestKey(StorageKind::Tombstone); | 67 | 55 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvE12getTombstoneEv Line | Count | Source | 65 | 21 | static RequestKey getTombstone() { | 66 | 21 | return RequestKey(StorageKind::Tombstone); | 67 | 21 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30PropertyWrapperTypeInfoRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsActorRequestEvE12getTombstoneEv Line | Count | Source | 65 | 5.97k | static RequestKey getTombstone() { | 66 | 5.97k | return RequestKey(StorageKind::Tombstone); | 67 | 5.97k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDistributedActorRequestEvE12getTombstoneEv Line | Count | Source | 65 | 3.86k | static RequestKey getTombstone() { | 66 | 3.86k | return RequestKey(StorageKind::Tombstone); | 67 | 3.86k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21UnderlyingTypeRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21StructuralTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 553 | static RequestKey getTombstone() { | 66 | 553 | return RequestKey(StorageKind::Tombstone); | 67 | 553 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28DefaultDefinitionTypeRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18EnumRawTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 314 | static RequestKey getTombstone() { | 66 | 314 | return RequestKey(StorageKind::Tombstone); | 67 | 314 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24HasMemberwiseInitRequestEvE12getTombstoneEv Line | Count | Source | 65 | 83 | static RequestKey getTombstone() { | 66 | 83 | return RequestKey(StorageKind::Tombstone); | 67 | 83 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SynthesizeMemberwiseInitRequestEvE12getTombstoneEv Line | Count | Source | 65 | 46 | static RequestKey getTombstone() { | 66 | 46 | return RequestKey(StorageKind::Tombstone); | 67 | 46 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvE12getTombstoneEv Line | Count | Source | 65 | 98 | static RequestKey getTombstone() { | 66 | 98 | return RequestKey(StorageKind::Tombstone); | 67 | 98 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21HasDefaultInitRequestEvE12getTombstoneEv Line | Count | Source | 65 | 67 | static RequestKey getTombstone() { | 66 | 67 | return RequestKey(StorageKind::Tombstone); | 67 | 67 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28SynthesizeDefaultInitRequestEvE12getTombstoneEv Line | Count | Source | 65 | 12 | static RequestKey getTombstone() { | 66 | 12 | return RequestKey(StorageKind::Tombstone); | 67 | 12 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GlobalActorInstanceRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20GetDestructorRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21IsDefaultActorRequestEvE12getTombstoneEv Line | Count | Source | 65 | 23 | static RequestKey getTombstone() { | 66 | 23 | return RequestKey(StorageKind::Tombstone); | 67 | 23 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39HasMissingDesignatedInitializersRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37InheritsSuperclassInitializersRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ClassAncestryFlagsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 46 | static RequestKey getTombstone() { | 66 | 46 | return RequestKey(StorageKind::Tombstone); | 67 | 46 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvE12getTombstoneEv Line | Count | Source | 65 | 4 | static RequestKey getTombstone() { | 66 | 4 | return RequestKey(StorageKind::Tombstone); | 67 | 4 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25InheritedProtocolsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 127 | static RequestKey getTombstone() { | 66 | 127 | return RequestKey(StorageKind::Tombstone); | 67 | 127 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolRequirementsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 10 | static RequestKey getTombstone() { | 66 | 10 | return RequestKey(StorageKind::Tombstone); | 67 | 10 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassTypeRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProtocolRequiresClassRequestEvE12getTombstoneEv Line | Count | Source | 65 | 8 | static RequestKey getTombstone() { | 66 | 8 | return RequestKey(StorageKind::Tombstone); | 67 | 8 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ExistentialConformsToSelfRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29PrimaryAssociatedTypesRequestEvE12getTombstoneEv Line | Count | Source | 65 | 4 | static RequestKey getTombstone() { | 66 | 4 | return RequestKey(StorageKind::Tombstone); | 67 | 4 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29StructuralRequirementsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 20 | static RequestKey getTombstone() { | 66 | 20 | return RequestKey(StorageKind::Tombstone); | 67 | 20 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeAliasRequirementsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 13 | static RequestKey getTombstone() { | 66 | 13 | return RequestKey(StorageKind::Tombstone); | 67 | 13 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolDependenciesRequestEvE12getTombstoneEv Line | Count | Source | 65 | 2.82k | static RequestKey getTombstone() { | 66 | 2.82k | return RequestKey(StorageKind::Tombstone); | 67 | 2.82k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27RequirementSignatureRequestEvE12getTombstoneEv Line | Count | Source | 65 | 364 | static RequestKey getTombstone() { | 66 | 364 | return RequestKey(StorageKind::Tombstone); | 67 | 364 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 7 | static RequestKey getTombstone() { | 66 | 7 | return RequestKey(StorageKind::Tombstone); | 67 | 7 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvE12getTombstoneEv Line | Count | Source | 65 | 2.93k | static RequestKey getTombstone() { | 66 | 2.93k | return RequestKey(StorageKind::Tombstone); | 67 | 2.93k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22StorageImplInfoRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24SetterAccessLevelRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasInitAccessorRequestEvE12getTombstoneEv Line | Count | Source | 65 | 2.40k | static RequestKey getTombstone() { | 66 | 2.40k | return RequestKey(StorageKind::Tombstone); | 67 | 2.40k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvE12getTombstoneEv Line | Count | Source | 65 | 9.90k | static RequestKey getTombstone() { | 66 | 9.90k | return RequestKey(StorageKind::Tombstone); | 67 | 9.90k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20NamingPatternRequestEvE12getTombstoneEv Line | Count | Source | 65 | 31 | static RequestKey getTombstone() { | 66 | 31 | return RequestKey(StorageKind::Tombstone); | 67 | 31 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParamSpecifierRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvE12getTombstoneEv Line | Count | Source | 65 | 14.4k | static RequestKey getTombstone() { | 66 | 14.4k | return RequestKey(StorageKind::Tombstone); | 67 | 14.4k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 42 | static RequestKey getTombstone() { | 66 | 42 | return RequestKey(StorageKind::Tombstone); | 67 | 42 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 42 | static RequestKey getTombstone() { | 66 | 42 | return RequestKey(StorageKind::Tombstone); | 67 | 42 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvE12getTombstoneEv Line | Count | Source | 65 | 93 | static RequestKey getTombstone() { | 66 | 93 | return RequestKey(StorageKind::Tombstone); | 67 | 93 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvE12getTombstoneEv Line | Count | Source | 65 | 98 | static RequestKey getTombstone() { | 66 | 98 | return RequestKey(StorageKind::Tombstone); | 67 | 98 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperMutabilityRequestEvE12getTombstoneEv Line | Count | Source | 65 | 142 | static RequestKey getTombstone() { | 66 | 142 | return RequestKey(StorageKind::Tombstone); | 67 | 142 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DefaultArgumentInitContextRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentExprRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentTypeRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResultBuilderTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 272 | static RequestKey getTombstone() { | 66 | 272 | return RequestKey(StorageKind::Tombstone); | 67 | 272 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AttachedResultBuilderRequestEvE12getTombstoneEv Line | Count | Source | 65 | 472 | static RequestKey getTombstone() { | 66 | 472 | return RequestKey(StorageKind::Tombstone); | 67 | 472 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ResultTypeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 706 | static RequestKey getTombstone() { | 66 | 706 | return RequestKey(StorageKind::Tombstone); | 67 | 706 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ParseAbstractFunctionBodyRequestEvE12getTombstoneEv Line | Count | Source | 65 | 443 | static RequestKey getTombstone() { | 66 | 443 | return RequestKey(StorageKind::Tombstone); | 67 | 443 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckFunctionBodyRequestEvE12getTombstoneEv Line | Count | Source | 65 | 188 | static RequestKey getTombstone() { | 66 | 188 | return RequestKey(StorageKind::Tombstone); | 67 | 188 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsFunctionBodySkippedRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26NeedsNewVTableEntryRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvE12getTombstoneEv Line | Count | Source | 65 | 3.32k | static RequestKey getTombstone() { | 66 | 3.32k | return RequestKey(StorageKind::Tombstone); | 67 | 3.32k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15IsStaticRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19SimpleDidSetRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SelfAccessKindRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20EnumRawValuesRequestEvE12getTombstoneEv Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvE12getTombstoneEv Line | Count | Source | 65 | 758 | static RequestKey getTombstone() { | 66 | 758 | return RequestKey(StorageKind::Tombstone); | 67 | 758 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvE12getTombstoneEv Line | Count | Source | 65 | 13 | static RequestKey getTombstone() { | 66 | 13 | return RequestKey(StorageKind::Tombstone); | 67 | 13 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvE12getTombstoneEv Line | Count | Source | 65 | 116 | static RequestKey getTombstone() { | 66 | 116 | return RequestKey(StorageKind::Tombstone); | 67 | 116 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ActorIsolationRequestEvE12getTombstoneEv Line | Count | Source | 65 | 6.68k | static RequestKey getTombstone() { | 66 | 6.68k | return RequestKey(StorageKind::Tombstone); | 67 | 6.68k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvE12getTombstoneEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveImplicitMemberRequestEvE12getTombstoneEv DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26FragileFunctionKindRequestEvE12getTombstoneEv Line | Count | Source | 65 | 808 | static RequestKey getTombstone() { | 66 | 808 | return RequestKey(StorageKind::Tombstone); | 67 | 808 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvE12getTombstoneEv Line | Count | Source | 65 | 882 | static RequestKey getTombstone() { | 66 | 882 | return RequestKey(StorageKind::Tombstone); | 67 | 882 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ABIMembersRequestEvE12getTombstoneEv Line | Count | Source | 65 | 128 | static RequestKey getTombstone() { | 66 | 128 | return RequestKey(StorageKind::Tombstone); | 67 | 128 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17AllMembersRequestEvE12getTombstoneEv Line | Count | Source | 65 | 35 | static RequestKey getTombstone() { | 66 | 35 | return RequestKey(StorageKind::Tombstone); | 67 | 35 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvE12getTombstoneEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvE12getTombstoneEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvE12getTombstoneEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvE12getTombstoneEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvE12getTombstoneEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetDistributedThunkRequestEvE12getTombstoneEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvE12getTombstoneEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36GetDistributedActorIDPropertyRequestEvE12getTombstoneEv Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27SemanticBriefCommentRequestEvE12getTombstoneEv Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36PolymorphicEffectRequirementsRequestEvE12getTombstoneEv Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PolymorphicEffectKindRequestEvE12getTombstoneEv Line | Count | Source | 65 | 300 | static RequestKey getTombstone() { | 66 | 300 | return RequestKey(StorageKind::Tombstone); | 67 | 300 | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ConformanceHasEffectRequestEvE12getTombstoneEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CallerSideDefaultArgExprRequestEvE12getTombstoneEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE12getTombstoneEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvE12getTombstoneEv GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvE12getTombstoneEv Line | Count | Source | 65 | 158 | static RequestKey getTombstone() { | 66 | 158 | return RequestKey(StorageKind::Tombstone); | 67 | 158 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22IsNonUserModuleRequestEvE12getTombstoneEv Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleImplicitImportsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 31 | static RequestKey getTombstone() { | 66 | 31 | return RequestKey(StorageKind::Tombstone); | 67 | 31 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PrimarySourceFilesRequestEvE12getTombstoneEv Line | Count | Source | 65 | 48 | static RequestKey getTombstone() { | 66 | 48 | return RequestKey(StorageKind::Tombstone); | 67 | 48 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvE12getTombstoneEv Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvE12getTombstoneEv Line | Count | Source | 65 | 4.68k | static RequestKey getTombstone() { | 66 | 4.68k | return RequestKey(StorageKind::Tombstone); | 67 | 4.68k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetImplicitSendableRequestEvE12getTombstoneEv Line | Count | Source | 65 | 142 | static RequestKey getTombstone() { | 66 | 142 | return RequestKey(StorageKind::Tombstone); | 67 | 142 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvE12getTombstoneEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvE12getTombstoneEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29HasImportsMatchingFlagRequestEvE12getTombstoneEv Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16SPIGroupsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 6.04k | static RequestKey getTombstone() { | 66 | 6.04k | return RequestKey(StorageKind::Tombstone); | 67 | 6.04k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ModuleLibraryLevelRequestEvE12getTombstoneEv Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 108 | static RequestKey getTombstone() { | 66 | 108 | return RequestKey(StorageKind::Tombstone); | 67 | 108 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExportedSourceFileRequestEvE12getTombstoneEv Line | Count | Source | 65 | 28 | static RequestKey getTombstone() { | 66 | 28 | return RequestKey(StorageKind::Tombstone); | 67 | 28 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22GetSourceFileAsyncNodeEvE12getTombstoneEv Line | Count | Source | 65 | 12 | static RequestKey getTombstone() { | 66 | 12 | return RequestKey(StorageKind::Tombstone); | 67 | 12 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32LookupConformanceInModuleRequestEvE12getTombstoneEv Unexecuted instantiation: ModuleNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21LookupInModuleRequestEvE12getTombstoneEv NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvE12getTombstoneEv Line | Count | Source | 65 | 106 | static RequestKey getTombstone() { | 66 | 106 | return RequestKey(StorageKind::Tombstone); | 67 | 106 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvE12getTombstoneEv NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvE12getTombstoneEv Line | Count | Source | 65 | 2.26k | static RequestKey getTombstone() { | 66 | 2.26k | return RequestKey(StorageKind::Tombstone); | 67 | 2.26k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsCallAsFunctionNominalRequestEvE12getTombstoneEv NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvE12getTombstoneEv Line | Count | Source | 65 | 216 | static RequestKey getTombstone() { | 66 | 216 | return RequestKey(StorageKind::Tombstone); | 67 | 216 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32SelfBoundsFromWhereClauseRequestEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37SelfBoundsFromGenericSignatureRequestEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19DirectLookupRequestEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CXXNamespaceMemberLookupEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ClangRecordMemberLookupEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22AnyObjectLookupRequestEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22QualifiedLookupRequestEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleQualifiedLookupRequestEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36UnderlyingTypeDeclsReferencedRequestEvE12getTombstoneEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InheritedDeclsReferencedRequestEvE12getTombstoneEv OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LookupInfixOperatorRequestEvE12getTombstoneEv Line | Count | Source | 65 | 40 | static RequestKey getTombstone() { | 66 | 40 | return RequestKey(StorageKind::Tombstone); | 67 | 40 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27LookupPrefixOperatorRequestEvE12getTombstoneEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPostfixOperatorRequestEvE12getTombstoneEv OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPrecedenceGroupRequestEvE12getTombstoneEv Line | Count | Source | 65 | 21 | static RequestKey getTombstone() { | 66 | 21 | return RequestKey(StorageKind::Tombstone); | 67 | 21 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DirectOperatorLookupRequestEvE12getTombstoneEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvE12getTombstoneEv Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ExprPatternMatchRequestEvE12getTombstoneEv ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ConditionalRequirementsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 856 | static RequestKey getTombstone() { | 66 | 856 | return RequestKey(StorageKind::Tombstone); | 67 | 856 | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18TypeWitnessRequestEvE12getTombstoneEv Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AssociatedConformanceRequestEvE12getTombstoneEv Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ValueWitnessRequestEvE12getTombstoneEv ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37LookupAllConformancesInContextRequestEvE12getTombstoneEv Line | Count | Source | 65 | 485 | static RequestKey getTombstone() { | 66 | 485 | return RequestKey(StorageKind::Tombstone); | 67 | 485 | } |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17RawCommentRequestEvE12getTombstoneEv Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvE12getTombstoneEv Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IsSingleValueStmtRequestEvE12getTombstoneEv Line | Count | Source | 65 | 98 | static RequestKey getTombstone() { | 66 | 98 | return RequestKey(StorageKind::Tombstone); | 67 | 98 | } |
Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18BreakTargetRequestEvE12getTombstoneEv Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ContinueTargetRequestEvE12getTombstoneEv TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RequirementRequestEvE12getTombstoneEv Line | Count | Source | 65 | 72 | static RequestKey getTombstone() { | 66 | 72 | return RequestKey(StorageKind::Tombstone); | 67 | 72 | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvE12getTombstoneEv Line | Count | Source | 65 | 90 | static RequestKey getTombstone() { | 66 | 90 | return RequestKey(StorageKind::Tombstone); | 67 | 90 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvE12getTombstoneEv |
68 | | |
69 | 384k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { |
70 | 384k | assert(kind != StorageKind::Normal); |
71 | 384k | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IDEInspectionFileRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ConstantValueInfoRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ENS4_11StorageKindE Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEC2ENS4_11StorageKindE IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_12IRGenRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 8 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 8 | assert(kind != StorageKind::Normal); | 71 | 8 | } |
SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 40 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 40 | assert(kind != StorageKind::Normal); | 71 | 40 | } |
Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 16 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 16 | assert(kind != StorageKind::Normal); | 71 | 16 | } |
Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ResolveProtocolNameRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29CollectOverriddenDeclsRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24TypeRelationCheckRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PreCheckResultBuilderRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEC2ENS4_11StorageKindE CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32CompareDeclSpecializationRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 101 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 101 | assert(kind != StorageKind::Normal); | 71 | 101 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29EnumElementExprPatternRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEC2ENS4_11StorageKindE CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDeclRefinementOfRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 335 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 335 | assert(kind != StorageKind::Normal); | 71 | 335 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 254 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 254 | assert(kind != StorageKind::Normal); | 71 | 254 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 90 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 90 | assert(kind != StorageKind::Normal); | 71 | 90 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ClosureHasExplicitResultRequestEvEC2ENS4_11StorageKindE DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 15 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 15 | assert(kind != StorageKind::Normal); | 71 | 15 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35DistributedModuleIsAvailableRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CheckDistributedFunctionRequestEvEC2ENS4_11StorageKindE TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ValidatePrecedenceGroupRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 81 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 81 | assert(kind != StorageKind::Normal); | 71 | 81 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2ENS4_11StorageKindE TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 92 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 92 | assert(kind != StorageKind::Normal); | 71 | 92 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34TypeCheckObjCImplementationRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEC2ENS4_11StorageKindE TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CheckRedeclarationRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 648 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 648 | assert(kind != StorageKind::Normal); | 71 | 648 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2ENS4_11StorageKindE TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ApplyAccessNoteRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 3.94k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 3.94k | assert(kind != StorageKind::Normal); | 71 | 3.94k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEC2ENS4_11StorageKindE TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18DefaultTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 87 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 87 | assert(kind != StorageKind::Normal); | 71 | 87 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CompilerPluginLoadRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEC2ENS4_11StorageKindE TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18PatternTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 437 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 437 | assert(kind != StorageKind::Normal); | 71 | 437 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEC2ENS4_11StorageKindE TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 102 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 102 | assert(kind != StorageKind::Normal); | 71 | 102 | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ENS4_11StorageKindE TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 317 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 317 | assert(kind != StorageKind::Normal); | 71 | 317 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperLValuenessRequestEvEC2ENS4_11StorageKindE TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20ExpandAccessorMacrosEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 345 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 345 | assert(kind != StorageKind::Normal); | 71 | 345 | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2ENS4_11StorageKindE TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26TypeCheckSourceFileRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 54 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 54 | assert(kind != StorageKind::Normal); | 71 | 54 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 78 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 78 | assert(kind != StorageKind::Normal); | 71 | 78 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 78 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 78 | assert(kind != StorageKind::Normal); | 71 | 78 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 78 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 78 | assert(kind != StorageKind::Normal); | 71 | 78 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 78 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 78 | assert(kind != StorageKind::Normal); | 71 | 78 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 533 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 533 | assert(kind != StorageKind::Normal); | 71 | 533 | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ENS4_11StorageKindE ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 2.79k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 2.79k | assert(kind != StorageKind::Normal); | 71 | 2.79k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ENS4_11StorageKindE Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IDEInspectionSecondPassRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEC2ENS4_11StorageKindE ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 8.75k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 8.75k | assert(kind != StorageKind::Normal); | 71 | 8.75k | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2ENS4_11StorageKindE Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30TypeEraserHasViableInitRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveTypeEraserTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvEC2ENS4_11StorageKindE Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SpecializeAttrTargetDeclRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 81 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 81 | assert(kind != StorageKind::Normal); | 71 | 81 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36SerializeAttrGenericSignatureRequestEvEC2ENS4_11StorageKindE Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 93 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 93 | assert(kind != StorageKind::Normal); | 71 | 93 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 87 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 87 | assert(kind != StorageKind::Normal); | 71 | 87 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29ImplementsAttrProtocolRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 70 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 70 | assert(kind != StorageKind::Normal); | 71 | 70 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38InitAccessorReferencedVariablesRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33SemanticAvailableRangeAttrRequestEvEC2ENS4_11StorageKindE Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30SemanticUnavailableAttrRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.74k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.74k | assert(kind != StorageKind::Normal); | 71 | 1.74k | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ExpandMemberAttributeMacrosEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 50.1k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 50.1k | assert(kind != StorageKind::Normal); | 71 | 50.1k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 15.3k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 15.3k | assert(kind != StorageKind::Normal); | 71 | 15.3k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 17.8k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 17.8k | assert(kind != StorageKind::Normal); | 71 | 17.8k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ThrownTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsAccessorTransparentRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericParamListRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericSignatureRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 19.7k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 19.7k | assert(kind != StorageKind::Normal); | 71 | 19.7k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ScopedImportLookupRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExtendedNominalRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 34 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 34 | assert(kind != StorageKind::Normal); | 71 | 34 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 144 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 144 | assert(kind != StorageKind::Normal); | 71 | 144 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26PatternBindingEntryRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 93 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 93 | assert(kind != StorageKind::Normal); | 71 | 93 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30RequiresOpaqueAccessorsRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25SynthesizeAccessorRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 45 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 45 | assert(kind != StorageKind::Normal); | 71 | 45 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 78 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 78 | assert(kind != StorageKind::Normal); | 71 | 78 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsGetterMutatingRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsSetterMutatingRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26OpaqueReadOwnershipRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 115 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 115 | assert(kind != StorageKind::Normal); | 71 | 115 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 190 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 190 | assert(kind != StorageKind::Normal); | 71 | 190 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13IsObjCRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsFinalRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17IsMoveOnlyRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16IsDynamicRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30DynamicallyReplacedDeclRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 8.33k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 8.33k | assert(kind != StorageKind::Normal); | 71 | 8.33k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InterfaceTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 63.1k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 63.1k | assert(kind != StorageKind::Normal); | 71 | 63.1k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18AccessLevelRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23StoredPropertiesRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 20.7k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 20.7k | assert(kind != StorageKind::Normal); | 71 | 20.7k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29InitAccessorPropertiesRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 140 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 140 | assert(kind != StorageKind::Normal); | 71 | 140 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31MemberwiseInitPropertiesRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 137 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 137 | assert(kind != StorageKind::Normal); | 71 | 137 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 47 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 47 | assert(kind != StorageKind::Normal); | 71 | 47 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30PropertyWrapperTypeInfoRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsActorRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 12.2k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 12.2k | assert(kind != StorageKind::Normal); | 71 | 12.2k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDistributedActorRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 8.10k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 8.10k | assert(kind != StorageKind::Normal); | 71 | 8.10k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21UnderlyingTypeRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21StructuralTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.46k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.46k | assert(kind != StorageKind::Normal); | 71 | 1.46k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28DefaultDefinitionTypeRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18EnumRawTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 883 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 883 | assert(kind != StorageKind::Normal); | 71 | 883 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24HasMemberwiseInitRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 207 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 207 | assert(kind != StorageKind::Normal); | 71 | 207 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SynthesizeMemberwiseInitRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 114 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 114 | assert(kind != StorageKind::Normal); | 71 | 114 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 227 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 227 | assert(kind != StorageKind::Normal); | 71 | 227 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21HasDefaultInitRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 184 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 184 | assert(kind != StorageKind::Normal); | 71 | 184 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28SynthesizeDefaultInitRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 33 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 33 | assert(kind != StorageKind::Normal); | 71 | 33 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GlobalActorInstanceRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20GetDestructorRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21IsDefaultActorRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 48 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 48 | assert(kind != StorageKind::Normal); | 71 | 48 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39HasMissingDesignatedInitializersRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37InheritsSuperclassInitializersRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ClassAncestryFlagsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 100 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 100 | assert(kind != StorageKind::Normal); | 71 | 100 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 11 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 11 | assert(kind != StorageKind::Normal); | 71 | 11 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25InheritedProtocolsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 257 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 257 | assert(kind != StorageKind::Normal); | 71 | 257 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolRequirementsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 23 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 23 | assert(kind != StorageKind::Normal); | 71 | 23 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassTypeRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProtocolRequiresClassRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 19 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 19 | assert(kind != StorageKind::Normal); | 71 | 19 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ExistentialConformsToSelfRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29PrimaryAssociatedTypesRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 12 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 12 | assert(kind != StorageKind::Normal); | 71 | 12 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29StructuralRequirementsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 52 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 52 | assert(kind != StorageKind::Normal); | 71 | 52 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeAliasRequirementsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 38 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 38 | assert(kind != StorageKind::Normal); | 71 | 38 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolDependenciesRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 5.86k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 5.86k | assert(kind != StorageKind::Normal); | 71 | 5.86k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27RequirementSignatureRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 731 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 731 | assert(kind != StorageKind::Normal); | 71 | 731 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 21 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 21 | assert(kind != StorageKind::Normal); | 71 | 21 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 5.87k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 5.87k | assert(kind != StorageKind::Normal); | 71 | 5.87k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22StorageImplInfoRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24SetterAccessLevelRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasInitAccessorRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 5.23k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 5.23k | assert(kind != StorageKind::Normal); | 71 | 5.23k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 24.1k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 24.1k | assert(kind != StorageKind::Normal); | 71 | 24.1k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20NamingPatternRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 82 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 82 | assert(kind != StorageKind::Normal); | 71 | 82 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParamSpecifierRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 31.7k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 31.7k | assert(kind != StorageKind::Normal); | 71 | 31.7k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 108 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 108 | assert(kind != StorageKind::Normal); | 71 | 108 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 108 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 108 | assert(kind != StorageKind::Normal); | 71 | 108 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 231 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 231 | assert(kind != StorageKind::Normal); | 71 | 231 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 241 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 241 | assert(kind != StorageKind::Normal); | 71 | 241 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperMutabilityRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 341 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 341 | assert(kind != StorageKind::Normal); | 71 | 341 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DefaultArgumentInitContextRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentExprRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentTypeRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResultBuilderTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 650 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 650 | assert(kind != StorageKind::Normal); | 71 | 650 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AttachedResultBuilderRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.13k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.13k | assert(kind != StorageKind::Normal); | 71 | 1.13k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ResultTypeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.44k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.44k | assert(kind != StorageKind::Normal); | 71 | 1.44k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ParseAbstractFunctionBodyRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 932 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 932 | assert(kind != StorageKind::Normal); | 71 | 932 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckFunctionBodyRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 438 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 438 | assert(kind != StorageKind::Normal); | 71 | 438 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsFunctionBodySkippedRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26NeedsNewVTableEntryRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 8.25k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 8.25k | assert(kind != StorageKind::Normal); | 71 | 8.25k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15IsStaticRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19SimpleDidSetRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SelfAccessKindRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20EnumRawValuesRequestEvEC2ENS4_11StorageKindE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.88k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.88k | assert(kind != StorageKind::Normal); | 71 | 1.88k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 34 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 34 | assert(kind != StorageKind::Normal); | 71 | 34 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 335 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 335 | assert(kind != StorageKind::Normal); | 71 | 335 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ActorIsolationRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 14.4k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 14.4k | assert(kind != StorageKind::Normal); | 71 | 14.4k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2ENS4_11StorageKindE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEC2ENS4_11StorageKindE DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26FragileFunctionKindRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.83k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.83k | assert(kind != StorageKind::Normal); | 71 | 1.83k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.81k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.81k | assert(kind != StorageKind::Normal); | 71 | 1.81k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ABIMembersRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 314 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 314 | assert(kind != StorageKind::Normal); | 71 | 314 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17AllMembersRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 91 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 91 | assert(kind != StorageKind::Normal); | 71 | 91 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetDistributedThunkRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36GetDistributedActorIDPropertyRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27SemanticBriefCommentRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36PolymorphicEffectRequirementsRequestEvEC2ENS4_11StorageKindE Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PolymorphicEffectKindRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 681 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 681 | assert(kind != StorageKind::Normal); | 71 | 681 | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ConformanceHasEffectRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CallerSideDefaultArgExprRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEC2ENS4_11StorageKindE GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 360 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 360 | assert(kind != StorageKind::Normal); | 71 | 360 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22IsNonUserModuleRequestEvEC2ENS4_11StorageKindE Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleImplicitImportsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 90 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 90 | assert(kind != StorageKind::Normal); | 71 | 90 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PrimarySourceFilesRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 120 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 120 | assert(kind != StorageKind::Normal); | 71 | 120 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEC2ENS4_11StorageKindE Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 9.46k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 9.46k | assert(kind != StorageKind::Normal); | 71 | 9.46k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetImplicitSendableRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 342 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 342 | assert(kind != StorageKind::Normal); | 71 | 342 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29HasImportsMatchingFlagRequestEvEC2ENS4_11StorageKindE Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16SPIGroupsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 13.0k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 13.0k | assert(kind != StorageKind::Normal); | 71 | 13.0k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ModuleLibraryLevelRequestEvEC2ENS4_11StorageKindE Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 247 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 247 | assert(kind != StorageKind::Normal); | 71 | 247 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExportedSourceFileRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 84 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 84 | assert(kind != StorageKind::Normal); | 71 | 84 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22GetSourceFileAsyncNodeEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 32 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 32 | assert(kind != StorageKind::Normal); | 71 | 32 | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 253 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 253 | assert(kind != StorageKind::Normal); | 71 | 253 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2ENS4_11StorageKindE NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 5.24k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 5.24k | assert(kind != StorageKind::Normal); | 71 | 5.24k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsCallAsFunctionNominalRequestEvEC2ENS4_11StorageKindE NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 515 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 515 | assert(kind != StorageKind::Normal); | 71 | 515 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEC2ENS4_11StorageKindE OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LookupInfixOperatorRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 99 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 99 | assert(kind != StorageKind::Normal); | 71 | 99 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27LookupPrefixOperatorRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPostfixOperatorRequestEvEC2ENS4_11StorageKindE OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPrecedenceGroupRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 52 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 52 | assert(kind != StorageKind::Normal); | 71 | 52 | } |
Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ExprPatternMatchRequestEvEC2ENS4_11StorageKindE ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ConditionalRequirementsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.83k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.83k | assert(kind != StorageKind::Normal); | 71 | 1.83k | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18TypeWitnessRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AssociatedConformanceRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ValueWitnessRequestEvEC2ENS4_11StorageKindE ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37LookupAllConformancesInContextRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 1.04k | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 1.04k | assert(kind != StorageKind::Normal); | 71 | 1.04k | } |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17RawCommentRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEC2ENS4_11StorageKindE Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IsSingleValueStmtRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 252 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 252 | assert(kind != StorageKind::Normal); | 71 | 252 | } |
Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18BreakTargetRequestEvEC2ENS4_11StorageKindE Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ContinueTargetRequestEvEC2ENS4_11StorageKindE TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RequirementRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 198 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 198 | assert(kind != StorageKind::Normal); | 71 | 198 | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvEC2ENS4_11StorageKindE Line | Count | Source | 69 | 222 | RequestKey(StorageKind kind) : Empty(), Kind(kind) { | 70 | 222 | assert(kind != StorageKind::Normal); | 71 | 222 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEC2ENS4_11StorageKindE |
72 | | |
73 | | public: |
74 | | explicit RequestKey(Request req) |
75 | 29.2k | : Req(std::move(req)), Kind(StorageKind::Normal) {}Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEC2ES3_ Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEC2ES3_ Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEC2ES3_ Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IDEInspectionFileRequestEvEC2ES3_ Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ES3_ Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ConstantValueInfoRequestEvEC2ES3_ Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ES3_ Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEC2ES3_ IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_12IRGenRequestEvEC2ES3_ Line | Count | Source | 75 | 1 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEC2ES3_ Line | Count | Source | 75 | 5 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEC2ES3_ Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEC2ES3_ Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEC2ES3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEC2ES3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ResolveProtocolNameRequestEvEC2ES3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEC2ES3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29CollectOverriddenDeclsRequestEvEC2ES3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEC2ES3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24TypeRelationCheckRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEC2ES3_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ES3_ Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEC2ES3_ Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PreCheckResultBuilderRequestEvEC2ES3_ Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEC2ES3_ CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32CompareDeclSpecializationRequestEvEC2ES3_ Line | Count | Source | 75 | 14 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29EnumElementExprPatternRequestEvEC2ES3_ Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEC2ES3_ CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDeclRefinementOfRequestEvEC2ES3_ Line | Count | Source | 75 | 51 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvEC2ES3_ Line | Count | Source | 75 | 40 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvEC2ES3_ Line | Count | Source | 75 | 17 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEC2ES3_ Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ClosureHasExplicitResultRequestEvEC2ES3_ DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEC2ES3_ Line | Count | Source | 75 | 4 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEC2ES3_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2ES3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35DistributedModuleIsAvailableRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CheckDistributedFunctionRequestEvEC2ES3_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ValidatePrecedenceGroupRequestEvEC2ES3_ Line | Count | Source | 75 | 16 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2ES3_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEC2ES3_ Line | Count | Source | 75 | 15 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34TypeCheckObjCImplementationRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEC2ES3_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CheckRedeclarationRequestEvEC2ES3_ Line | Count | Source | 75 | 93 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2ES3_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ApplyAccessNoteRequestEvEC2ES3_ Line | Count | Source | 75 | 446 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEC2ES3_ TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18DefaultTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 2 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CompilerPluginLoadRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEC2ES3_ TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18PatternTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 69 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEC2ES3_ TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 30 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ES3_ TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEC2ES3_ Line | Count | Source | 75 | 62 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEC2ES3_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperLValuenessRequestEvEC2ES3_ TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20ExpandAccessorMacrosEvEC2ES3_ Line | Count | Source | 75 | 68 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2ES3_ TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26TypeCheckSourceFileRequestEvEC2ES3_ Line | Count | Source | 75 | 6 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvEC2ES3_ Line | Count | Source | 75 | 13 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvEC2ES3_ Line | Count | Source | 75 | 13 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvEC2ES3_ Line | Count | Source | 75 | 13 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvEC2ES3_ Line | Count | Source | 75 | 13 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2ES3_ Line | Count | Source | 75 | 119 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEC2ES3_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ES3_ ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ES3_ Line | Count | Source | 75 | 561 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvEC2ES3_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2ES3_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ES3_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ES3_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ES3_ Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2ES3_ Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IDEInspectionSecondPassRequestEvEC2ES3_ Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ES3_ Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEC2ES3_ ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 1.64k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEC2ES3_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEC2ES3_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEC2ES3_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEC2ES3_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEC2ES3_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2ES3_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30TypeEraserHasViableInitRequestEvEC2ES3_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveTypeEraserTypeRequestEvEC2ES3_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvEC2ES3_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SpecializeAttrTargetDeclRequestEvEC2ES3_ Line | Count | Source | 75 | 16 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36SerializeAttrGenericSignatureRequestEvEC2ES3_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvEC2ES3_ Line | Count | Source | 75 | 8 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvEC2ES3_ Line | Count | Source | 75 | 10 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29ImplementsAttrProtocolRequestEvEC2ES3_ Line | Count | Source | 75 | 17 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38InitAccessorReferencedVariablesRequestEvEC2ES3_ Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33SemanticAvailableRangeAttrRequestEvEC2ES3_ Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30SemanticUnavailableAttrRequestEvEC2ES3_ Line | Count | Source | 75 | 175 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ExpandMemberAttributeMacrosEvEC2ES3_ Line | Count | Source | 75 | 5.52k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEC2ES3_ Line | Count | Source | 75 | 1.81k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2ES3_ Line | Count | Source | 75 | 1.17k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ThrownTypeRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsAccessorTransparentRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericParamListRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericSignatureRequestEvEC2ES3_ Line | Count | Source | 75 | 28 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ScopedImportLookupRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExtendedNominalRequestEvEC2ES3_ Line | Count | Source | 75 | 6 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 6 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26PatternBindingEntryRequestEvEC2ES3_ Line | Count | Source | 75 | 30 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30RequiresOpaqueAccessorsRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25SynthesizeAccessorRequestEvEC2ES3_ Line | Count | Source | 75 | 14 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEC2ES3_ Line | Count | Source | 75 | 7 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsGetterMutatingRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsSetterMutatingRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26OpaqueReadOwnershipRequestEvEC2ES3_ Line | Count | Source | 75 | 14 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEC2ES3_ Line | Count | Source | 75 | 2 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13IsObjCRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsFinalRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17IsMoveOnlyRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16IsDynamicRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30DynamicallyReplacedDeclRequestEvEC2ES3_ Line | Count | Source | 75 | 1.02k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InterfaceTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 155 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18AccessLevelRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23StoredPropertiesRequestEvEC2ES3_ Line | Count | Source | 75 | 91 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29InitAccessorPropertiesRequestEvEC2ES3_ Line | Count | Source | 75 | 19 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31MemberwiseInitPropertiesRequestEvEC2ES3_ Line | Count | Source | 75 | 22 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvEC2ES3_ Line | Count | Source | 75 | 4 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30PropertyWrapperTypeInfoRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsActorRequestEvEC2ES3_ Line | Count | Source | 75 | 308 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDistributedActorRequestEvEC2ES3_ Line | Count | Source | 75 | 356 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21UnderlyingTypeRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21StructuralTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 344 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28DefaultDefinitionTypeRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18EnumRawTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 244 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24HasMemberwiseInitRequestEvEC2ES3_ Line | Count | Source | 75 | 35 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SynthesizeMemberwiseInitRequestEvEC2ES3_ Line | Count | Source | 75 | 18 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvEC2ES3_ Line | Count | Source | 75 | 26 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21HasDefaultInitRequestEvEC2ES3_ Line | Count | Source | 75 | 40 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28SynthesizeDefaultInitRequestEvEC2ES3_ Line | Count | Source | 75 | 6 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GlobalActorInstanceRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20GetDestructorRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21IsDefaultActorRequestEvEC2ES3_ Line | Count | Source | 75 | 1 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39HasMissingDesignatedInitializersRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37InheritsSuperclassInitializersRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ClassAncestryFlagsRequestEvEC2ES3_ Line | Count | Source | 75 | 5 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEC2ES3_ Line | Count | Source | 75 | 2 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25InheritedProtocolsRequestEvEC2ES3_ Line | Count | Source | 75 | 2 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolRequirementsRequestEvEC2ES3_ Line | Count | Source | 75 | 2 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassTypeRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProtocolRequiresClassRequestEvEC2ES3_ Line | Count | Source | 75 | 2 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ExistentialConformsToSelfRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29PrimaryAssociatedTypesRequestEvEC2ES3_ Line | Count | Source | 75 | 2 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29StructuralRequirementsRequestEvEC2ES3_ Line | Count | Source | 75 | 7 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeAliasRequirementsRequestEvEC2ES3_ Line | Count | Source | 75 | 7 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolDependenciesRequestEvEC2ES3_ Line | Count | Source | 75 | 210 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27RequirementSignatureRequestEvEC2ES3_ Line | Count | Source | 75 | 2 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEC2ES3_ Line | Count | Source | 75 | 4 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22StorageImplInfoRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24SetterAccessLevelRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasInitAccessorRequestEvEC2ES3_ Line | Count | Source | 75 | 408 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEC2ES3_ Line | Count | Source | 75 | 4.32k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20NamingPatternRequestEvEC2ES3_ Line | Count | Source | 75 | 19 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParamSpecifierRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEC2ES3_ Line | Count | Source | 75 | 2.90k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 21 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 21 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2ES3_ Line | Count | Source | 75 | 40 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEC2ES3_ Line | Count | Source | 75 | 40 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperMutabilityRequestEvEC2ES3_ Line | Count | Source | 75 | 51 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DefaultArgumentInitContextRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentExprRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentTypeRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResultBuilderTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 98 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AttachedResultBuilderRequestEvEC2ES3_ Line | Count | Source | 75 | 179 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ResultTypeRequestEvEC2ES3_ Line | Count | Source | 75 | 25 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ParseAbstractFunctionBodyRequestEvEC2ES3_ Line | Count | Source | 75 | 45 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckFunctionBodyRequestEvEC2ES3_ Line | Count | Source | 75 | 58 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsFunctionBodySkippedRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26NeedsNewVTableEntryRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEC2ES3_ Line | Count | Source | 75 | 1.59k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15IsStaticRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19SimpleDidSetRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SelfAccessKindRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20EnumRawValuesRequestEvEC2ES3_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2ES3_ Line | Count | Source | 75 | 355 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvEC2ES3_ Line | Count | Source | 75 | 60 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEC2ES3_ Line | Count | Source | 75 | 94 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ActorIsolationRequestEvEC2ES3_ Line | Count | Source | 75 | 1.08k | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2ES3_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEC2ES3_ DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26FragileFunctionKindRequestEvEC2ES3_ Line | Count | Source | 75 | 205 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2ES3_ Line | Count | Source | 75 | 46 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ABIMembersRequestEvEC2ES3_ Line | Count | Source | 75 | 48 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17AllMembersRequestEvEC2ES3_ Line | Count | Source | 75 | 14 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvEC2ES3_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvEC2ES3_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvEC2ES3_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEC2ES3_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvEC2ES3_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetDistributedThunkRequestEvEC2ES3_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvEC2ES3_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36GetDistributedActorIDPropertyRequestEvEC2ES3_ Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27SemanticBriefCommentRequestEvEC2ES3_ Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36PolymorphicEffectRequirementsRequestEvEC2ES3_ Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PolymorphicEffectKindRequestEvEC2ES3_ Line | Count | Source | 75 | 74 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ConformanceHasEffectRequestEvEC2ES3_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CallerSideDefaultArgExprRequestEvEC2ES3_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ES3_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEC2ES3_ GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEC2ES3_ Line | Count | Source | 75 | 36 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22IsNonUserModuleRequestEvEC2ES3_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleImplicitImportsRequestEvEC2ES3_ Line | Count | Source | 75 | 14 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PrimarySourceFilesRequestEvEC2ES3_ Line | Count | Source | 75 | 12 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEC2ES3_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2ES3_ Line | Count | Source | 75 | 89 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetImplicitSendableRequestEvEC2ES3_ Line | Count | Source | 75 | 49 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvEC2ES3_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEC2ES3_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29HasImportsMatchingFlagRequestEvEC2ES3_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16SPIGroupsRequestEvEC2ES3_ Line | Count | Source | 75 | 961 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ModuleLibraryLevelRequestEvEC2ES3_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvEC2ES3_ Line | Count | Source | 75 | 17 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExportedSourceFileRequestEvEC2ES3_ Line | Count | Source | 75 | 14 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22GetSourceFileAsyncNodeEvEC2ES3_ Line | Count | Source | 75 | 4 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2ES3_ Line | Count | Source | 75 | 34 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2ES3_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEC2ES3_ Line | Count | Source | 75 | 699 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEC2ES3_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsCallAsFunctionNominalRequestEvEC2ES3_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvEC2ES3_ Line | Count | Source | 75 | 77 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEC2ES3_ OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LookupInfixOperatorRequestEvEC2ES3_ Line | Count | Source | 75 | 14 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27LookupPrefixOperatorRequestEvEC2ES3_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPostfixOperatorRequestEvEC2ES3_ OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPrecedenceGroupRequestEvEC2ES3_ Line | Count | Source | 75 | 5 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ExprPatternMatchRequestEvEC2ES3_ ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ConditionalRequirementsRequestEvEC2ES3_ Line | Count | Source | 75 | 112 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18TypeWitnessRequestEvEC2ES3_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AssociatedConformanceRequestEvEC2ES3_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ValueWitnessRequestEvEC2ES3_ ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37LookupAllConformancesInContextRequestEvEC2ES3_ Line | Count | Source | 75 | 63 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17RawCommentRequestEvEC2ES3_ Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEC2ES3_ Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IsSingleValueStmtRequestEvEC2ES3_ Line | Count | Source | 75 | 49 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18BreakTargetRequestEvEC2ES3_ Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ContinueTargetRequestEvEC2ES3_ TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RequirementRequestEvEC2ES3_ Line | Count | Source | 75 | 47 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvEC2ES3_ Line | Count | Source | 75 | 37 | : Req(std::move(req)), Kind(StorageKind::Normal) {} |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEC2ES3_ |
76 | | |
77 | 134k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { |
78 | 134k | if (Kind == StorageKind::Normal) |
79 | 0 | new (&Req) Request(other.Req); |
80 | 134k | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEC2ERKS4_ Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEC2ERKS4_ Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEC2ERKS4_ Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IDEInspectionFileRequestEvEC2ERKS4_ Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ERKS4_ Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ConstantValueInfoRequestEvEC2ERKS4_ Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ERKS4_ Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEC2ERKS4_ IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_12IRGenRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64 | } |
SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Unexecuted instantiation: Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEC2ERKS4_ Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEC2ERKS4_ Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEC2ERKS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEC2ERKS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ResolveProtocolNameRequestEvEC2ERKS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEC2ERKS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29CollectOverriddenDeclsRequestEvEC2ERKS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEC2ERKS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24TypeRelationCheckRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEC2ERKS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ERKS4_ Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEC2ERKS4_ Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PreCheckResultBuilderRequestEvEC2ERKS4_ Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEC2ERKS4_ CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32CompareDeclSpecializationRequestEvEC2ERKS4_ Line | Count | Source | 77 | 192 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 192 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 192 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29EnumElementExprPatternRequestEvEC2ERKS4_ Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEC2ERKS4_ CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDeclRefinementOfRequestEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvEC2ERKS4_ Line | Count | Source | 77 | 640 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 640 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 640 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEC2ERKS4_ Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ClosureHasExplicitResultRequestEvEC2ERKS4_ DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEC2ERKS4_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2ERKS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35DistributedModuleIsAvailableRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CheckDistributedFunctionRequestEvEC2ERKS4_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ValidatePrecedenceGroupRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2ERKS4_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34TypeCheckObjCImplementationRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEC2ERKS4_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CheckRedeclarationRequestEvEC2ERKS4_ Line | Count | Source | 77 | 512 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 512 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 512 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2ERKS4_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ApplyAccessNoteRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.60k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.60k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.60k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEC2ERKS4_ TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18DefaultTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CompilerPluginLoadRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEC2ERKS4_ TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18PatternTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 384 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 384 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 384 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEC2ERKS4_ TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2ERKS4_ TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEC2ERKS4_ Line | Count | Source | 77 | 448 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 448 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 448 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEC2ERKS4_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperLValuenessRequestEvEC2ERKS4_ TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20ExpandAccessorMacrosEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2ERKS4_ TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26TypeCheckSourceFileRequestEvEC2ERKS4_ Line | Count | Source | 77 | 384 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 384 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 384 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 832 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 832 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 832 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 832 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 832 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 832 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvEC2ERKS4_ Line | Count | Source | 77 | 832 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 832 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 832 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 832 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 832 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 832 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2ERKS4_ Line | Count | Source | 77 | 896 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 896 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 896 | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEC2ERKS4_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ERKS4_ ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ERKS4_ Line | Count | Source | 77 | 2.24k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 2.24k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 2.24k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvEC2ERKS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2ERKS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ERKS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ERKS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ERKS4_ Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2ERKS4_ Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IDEInspectionSecondPassRequestEvEC2ERKS4_ Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ERKS4_ Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEC2ERKS4_ ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 5.88k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 5.88k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 5.88k | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEC2ERKS4_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEC2ERKS4_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEC2ERKS4_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEC2ERKS4_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEC2ERKS4_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2ERKS4_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30TypeEraserHasViableInitRequestEvEC2ERKS4_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveTypeEraserTypeRequestEvEC2ERKS4_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvEC2ERKS4_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SpecializeAttrTargetDeclRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36SerializeAttrGenericSignatureRequestEvEC2ERKS4_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvEC2ERKS4_ Line | Count | Source | 77 | 192 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 192 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 192 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29ImplementsAttrProtocolRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38InitAccessorReferencedVariablesRequestEvEC2ERKS4_ Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33SemanticAvailableRangeAttrRequestEvEC2ERKS4_ Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30SemanticUnavailableAttrRequestEvEC2ERKS4_ Line | Count | Source | 77 | 704 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 704 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 704 | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ExpandMemberAttributeMacrosEvEC2ERKS4_ Line | Count | Source | 77 | 21.8k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 21.8k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 21.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEC2ERKS4_ Line | Count | Source | 77 | 7.29k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 7.29k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 7.29k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 3.84k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 3.84k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 3.84k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ThrownTypeRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsAccessorTransparentRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericParamListRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericSignatureRequestEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ScopedImportLookupRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExtendedNominalRequestEvEC2ERKS4_ Line | Count | Source | 77 | 128 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 128 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 128 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 128 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 128 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 128 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26PatternBindingEntryRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30RequiresOpaqueAccessorsRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25SynthesizeAccessorRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsGetterMutatingRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsSetterMutatingRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26OpaqueReadOwnershipRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 128 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 128 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 128 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13IsObjCRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsFinalRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17IsMoveOnlyRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16IsDynamicRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30DynamicallyReplacedDeclRequestEvEC2ERKS4_ Line | Count | Source | 77 | 3.84k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 3.84k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 3.84k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InterfaceTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 768 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 768 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 768 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18AccessLevelRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23StoredPropertiesRequestEvEC2ERKS4_ Line | Count | Source | 77 | 704 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 704 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 704 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29InitAccessorPropertiesRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31MemberwiseInitPropertiesRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30PropertyWrapperTypeInfoRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsActorRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.47k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.47k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.47k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDistributedActorRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.72k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.72k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.72k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21UnderlyingTypeRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21StructuralTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.40k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.40k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.40k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28DefaultDefinitionTypeRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18EnumRawTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 768 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 768 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 768 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24HasMemberwiseInitRequestEvEC2ERKS4_ Line | Count | Source | 77 | 384 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 384 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 384 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SynthesizeMemberwiseInitRequestEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21HasDefaultInitRequestEvEC2ERKS4_ Line | Count | Source | 77 | 640 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 640 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 640 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28SynthesizeDefaultInitRequestEvEC2ERKS4_ Line | Count | Source | 77 | 192 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 192 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 192 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GlobalActorInstanceRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20GetDestructorRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21IsDefaultActorRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39HasMissingDesignatedInitializersRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37InheritsSuperclassInitializersRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ClassAncestryFlagsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 192 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 192 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 192 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25InheritedProtocolsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolRequirementsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassTypeRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProtocolRequiresClassRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ExistentialConformsToSelfRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29PrimaryAssociatedTypesRequestEvEC2ERKS4_ Line | Count | Source | 77 | 128 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 128 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 128 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29StructuralRequirementsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeAliasRequirementsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolDependenciesRequestEvEC2ERKS4_ Line | Count | Source | 77 | 832 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 832 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 832 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27RequirementSignatureRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 192 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 192 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 192 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22StorageImplInfoRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24SetterAccessLevelRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasInitAccessorRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.92k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.92k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.92k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEC2ERKS4_ Line | Count | Source | 77 | 15.5k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 15.5k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 15.5k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20NamingPatternRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParamSpecifierRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEC2ERKS4_ Line | Count | Source | 77 | 12.4k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 12.4k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 12.4k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 192 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 192 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 192 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 192 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 192 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 192 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperMutabilityRequestEvEC2ERKS4_ Line | Count | Source | 77 | 384 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 384 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 384 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DefaultArgumentInitContextRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentExprRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentTypeRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResultBuilderTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 512 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 512 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 512 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AttachedResultBuilderRequestEvEC2ERKS4_ Line | Count | Source | 77 | 832 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 832 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 832 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ResultTypeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 384 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 384 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 384 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ParseAbstractFunctionBodyRequestEvEC2ERKS4_ Line | Count | Source | 77 | 64 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 64 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 64 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckFunctionBodyRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsFunctionBodySkippedRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26NeedsNewVTableEntryRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEC2ERKS4_ Line | Count | Source | 77 | 5.05k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 5.05k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 5.05k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15IsStaticRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19SimpleDidSetRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SelfAccessKindRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20EnumRawValuesRequestEvEC2ERKS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2ERKS4_ Line | Count | Source | 77 | 1.34k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 1.34k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 1.34k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvEC2ERKS4_ Line | Count | Source | 77 | 128 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 128 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 128 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEC2ERKS4_ Line | Count | Source | 77 | 576 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 576 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 576 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ActorIsolationRequestEvEC2ERKS4_ Line | Count | Source | 77 | 4.35k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 4.35k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 4.35k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2ERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEC2ERKS4_ DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26FragileFunctionKindRequestEvEC2ERKS4_ Line | Count | Source | 77 | 896 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 896 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 896 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2ERKS4_ Line | Count | Source | 77 | 512 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 512 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 512 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ABIMembersRequestEvEC2ERKS4_ Line | Count | Source | 77 | 640 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 640 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 640 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17AllMembersRequestEvEC2ERKS4_ Line | Count | Source | 77 | 448 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 448 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 448 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvEC2ERKS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvEC2ERKS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvEC2ERKS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEC2ERKS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvEC2ERKS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetDistributedThunkRequestEvEC2ERKS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvEC2ERKS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36GetDistributedActorIDPropertyRequestEvEC2ERKS4_ Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27SemanticBriefCommentRequestEvEC2ERKS4_ Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36PolymorphicEffectRequirementsRequestEvEC2ERKS4_ Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PolymorphicEffectKindRequestEvEC2ERKS4_ Line | Count | Source | 77 | 448 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 448 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 448 | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ConformanceHasEffectRequestEvEC2ERKS4_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CallerSideDefaultArgExprRequestEvEC2ERKS4_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2ERKS4_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEC2ERKS4_ GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEC2ERKS4_ Line | Count | Source | 77 | 512 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 512 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 512 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22IsNonUserModuleRequestEvEC2ERKS4_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleImplicitImportsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 896 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 896 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 896 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PrimarySourceFilesRequestEvEC2ERKS4_ Line | Count | Source | 77 | 768 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 768 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 768 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEC2ERKS4_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2ERKS4_ Line | Count | Source | 77 | 832 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 832 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 832 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetImplicitSendableRequestEvEC2ERKS4_ Line | Count | Source | 77 | 576 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 576 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 576 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvEC2ERKS4_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEC2ERKS4_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29HasImportsMatchingFlagRequestEvEC2ERKS4_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16SPIGroupsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 3.77k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 3.77k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 3.77k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ModuleLibraryLevelRequestEvEC2ERKS4_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 896 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 896 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 896 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExportedSourceFileRequestEvEC2ERKS4_ Line | Count | Source | 77 | 896 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 896 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 896 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22GetSourceFileAsyncNodeEvEC2ERKS4_ Line | Count | Source | 77 | 256 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 256 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 256 | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2ERKS4_ Line | Count | Source | 77 | 448 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 448 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 448 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2ERKS4_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEC2ERKS4_ Line | Count | Source | 77 | 2.88k | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 2.88k | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 2.88k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEC2ERKS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsCallAsFunctionNominalRequestEvEC2ERKS4_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvEC2ERKS4_ Line | Count | Source | 77 | 384 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 384 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 384 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEC2ERKS4_ OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LookupInfixOperatorRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27LookupPrefixOperatorRequestEvEC2ERKS4_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPostfixOperatorRequestEvEC2ERKS4_ OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPrecedenceGroupRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ExprPatternMatchRequestEvEC2ERKS4_ ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ConditionalRequirementsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 704 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 704 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 704 | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18TypeWitnessRequestEvEC2ERKS4_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AssociatedConformanceRequestEvEC2ERKS4_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ValueWitnessRequestEvEC2ERKS4_ ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37LookupAllConformancesInContextRequestEvEC2ERKS4_ Line | Count | Source | 77 | 576 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 576 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 576 | } |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17RawCommentRequestEvEC2ERKS4_ Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEC2ERKS4_ Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IsSingleValueStmtRequestEvEC2ERKS4_ Line | Count | Source | 77 | 448 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 448 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 448 | } |
Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18BreakTargetRequestEvEC2ERKS4_ Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ContinueTargetRequestEvEC2ERKS4_ TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RequirementRequestEvEC2ERKS4_ Line | Count | Source | 77 | 448 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 448 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 448 | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvEC2ERKS4_ Line | Count | Source | 77 | 320 | RequestKey(const RequestKey &other) : Empty(), Kind(other.Kind) { | 78 | 320 | if (Kind == StorageKind::Normal) | 79 | 0 | new (&Req) Request(other.Req); | 80 | 320 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEC2ERKS4_ |
81 | 89.9k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { |
82 | 89.9k | if (Kind == StorageKind::Normal) |
83 | 89.9k | new (&Req) Request(std::move(other.Req)); |
84 | 89.9k | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEC2EOS4_ Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEC2EOS4_ Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEC2EOS4_ Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IDEInspectionFileRequestEvEC2EOS4_ Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2EOS4_ Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ConstantValueInfoRequestEvEC2EOS4_ Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2EOS4_ Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEC2EOS4_ IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_12IRGenRequestEvEC2EOS4_ Line | Count | Source | 81 | 2 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 2 | if (Kind == StorageKind::Normal) | 83 | 2 | new (&Req) Request(std::move(other.Req)); | 84 | 2 | } |
SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEC2EOS4_ Line | Count | Source | 81 | 10 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 10 | if (Kind == StorageKind::Normal) | 83 | 10 | new (&Req) Request(std::move(other.Req)); | 84 | 10 | } |
Unexecuted instantiation: Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEC2EOS4_ Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEC2EOS4_ Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEC2EOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEC2EOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ResolveProtocolNameRequestEvEC2EOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEC2EOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29CollectOverriddenDeclsRequestEvEC2EOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEC2EOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24TypeRelationCheckRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEC2EOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2EOS4_ Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEC2EOS4_ Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PreCheckResultBuilderRequestEvEC2EOS4_ Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEC2EOS4_ CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32CompareDeclSpecializationRequestEvEC2EOS4_ Line | Count | Source | 81 | 28 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 28 | if (Kind == StorageKind::Normal) | 83 | 28 | new (&Req) Request(std::move(other.Req)); | 84 | 28 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29EnumElementExprPatternRequestEvEC2EOS4_ Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEC2EOS4_ CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDeclRefinementOfRequestEvEC2EOS4_ Line | Count | Source | 81 | 102 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 102 | if (Kind == StorageKind::Normal) | 83 | 102 | new (&Req) Request(std::move(other.Req)); | 84 | 102 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvEC2EOS4_ Line | Count | Source | 81 | 80 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 80 | if (Kind == StorageKind::Normal) | 83 | 80 | new (&Req) Request(std::move(other.Req)); | 84 | 80 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvEC2EOS4_ Line | Count | Source | 81 | 34 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 34 | if (Kind == StorageKind::Normal) | 83 | 34 | new (&Req) Request(std::move(other.Req)); | 84 | 34 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEC2EOS4_ Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ClosureHasExplicitResultRequestEvEC2EOS4_ DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEC2EOS4_ Line | Count | Source | 81 | 8 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 8 | if (Kind == StorageKind::Normal) | 83 | 8 | new (&Req) Request(std::move(other.Req)); | 84 | 8 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEC2EOS4_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2EOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35DistributedModuleIsAvailableRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CheckDistributedFunctionRequestEvEC2EOS4_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ValidatePrecedenceGroupRequestEvEC2EOS4_ Line | Count | Source | 81 | 32 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 32 | if (Kind == StorageKind::Normal) | 83 | 32 | new (&Req) Request(std::move(other.Req)); | 84 | 32 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2EOS4_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEC2EOS4_ Line | Count | Source | 81 | 30 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 30 | if (Kind == StorageKind::Normal) | 83 | 30 | new (&Req) Request(std::move(other.Req)); | 84 | 30 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34TypeCheckObjCImplementationRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEC2EOS4_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CheckRedeclarationRequestEvEC2EOS4_ Line | Count | Source | 81 | 233 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 233 | if (Kind == StorageKind::Normal) | 83 | 233 | new (&Req) Request(std::move(other.Req)); | 84 | 233 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2EOS4_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ApplyAccessNoteRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.17k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.17k | if (Kind == StorageKind::Normal) | 83 | 1.17k | new (&Req) Request(std::move(other.Req)); | 84 | 1.17k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEC2EOS4_ TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18DefaultTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 4 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 4 | if (Kind == StorageKind::Normal) | 83 | 4 | new (&Req) Request(std::move(other.Req)); | 84 | 4 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CompilerPluginLoadRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEC2EOS4_ TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18PatternTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 138 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 138 | if (Kind == StorageKind::Normal) | 83 | 138 | new (&Req) Request(std::move(other.Req)); | 84 | 138 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEC2EOS4_ TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 60 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 60 | if (Kind == StorageKind::Normal) | 83 | 60 | new (&Req) Request(std::move(other.Req)); | 84 | 60 | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEC2EOS4_ TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEC2EOS4_ Line | Count | Source | 81 | 124 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 124 | if (Kind == StorageKind::Normal) | 83 | 124 | new (&Req) Request(std::move(other.Req)); | 84 | 124 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEC2EOS4_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperLValuenessRequestEvEC2EOS4_ TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20ExpandAccessorMacrosEvEC2EOS4_ Line | Count | Source | 81 | 136 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 136 | if (Kind == StorageKind::Normal) | 83 | 136 | new (&Req) Request(std::move(other.Req)); | 84 | 136 | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2EOS4_ TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26TypeCheckSourceFileRequestEvEC2EOS4_ Line | Count | Source | 81 | 12 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 12 | if (Kind == StorageKind::Normal) | 83 | 12 | new (&Req) Request(std::move(other.Req)); | 84 | 12 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvEC2EOS4_ Line | Count | Source | 81 | 26 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 26 | if (Kind == StorageKind::Normal) | 83 | 26 | new (&Req) Request(std::move(other.Req)); | 84 | 26 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvEC2EOS4_ Line | Count | Source | 81 | 26 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 26 | if (Kind == StorageKind::Normal) | 83 | 26 | new (&Req) Request(std::move(other.Req)); | 84 | 26 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvEC2EOS4_ Line | Count | Source | 81 | 26 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 26 | if (Kind == StorageKind::Normal) | 83 | 26 | new (&Req) Request(std::move(other.Req)); | 84 | 26 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvEC2EOS4_ Line | Count | Source | 81 | 26 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 26 | if (Kind == StorageKind::Normal) | 83 | 26 | new (&Req) Request(std::move(other.Req)); | 84 | 26 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEC2EOS4_ Line | Count | Source | 81 | 238 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 238 | if (Kind == StorageKind::Normal) | 83 | 238 | new (&Req) Request(std::move(other.Req)); | 84 | 238 | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEC2EOS4_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2EOS4_ ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.64k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.64k | if (Kind == StorageKind::Normal) | 83 | 1.64k | new (&Req) Request(std::move(other.Req)); | 84 | 1.64k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvEC2EOS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2EOS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2EOS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2EOS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2EOS4_ Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2EOS4_ Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IDEInspectionSecondPassRequestEvEC2EOS4_ Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEC2EOS4_ ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 5.14k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 5.14k | if (Kind == StorageKind::Normal) | 83 | 5.14k | new (&Req) Request(std::move(other.Req)); | 84 | 5.14k | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEC2EOS4_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEC2EOS4_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEC2EOS4_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEC2EOS4_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEC2EOS4_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2EOS4_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30TypeEraserHasViableInitRequestEvEC2EOS4_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveTypeEraserTypeRequestEvEC2EOS4_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvEC2EOS4_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SpecializeAttrTargetDeclRequestEvEC2EOS4_ Line | Count | Source | 81 | 32 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 32 | if (Kind == StorageKind::Normal) | 83 | 32 | new (&Req) Request(std::move(other.Req)); | 84 | 32 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36SerializeAttrGenericSignatureRequestEvEC2EOS4_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvEC2EOS4_ Line | Count | Source | 81 | 16 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 16 | if (Kind == StorageKind::Normal) | 83 | 16 | new (&Req) Request(std::move(other.Req)); | 84 | 16 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvEC2EOS4_ Line | Count | Source | 81 | 20 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 20 | if (Kind == StorageKind::Normal) | 83 | 20 | new (&Req) Request(std::move(other.Req)); | 84 | 20 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29ImplementsAttrProtocolRequestEvEC2EOS4_ Line | Count | Source | 81 | 34 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 34 | if (Kind == StorageKind::Normal) | 83 | 34 | new (&Req) Request(std::move(other.Req)); | 84 | 34 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38InitAccessorReferencedVariablesRequestEvEC2EOS4_ Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33SemanticAvailableRangeAttrRequestEvEC2EOS4_ Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30SemanticUnavailableAttrRequestEvEC2EOS4_ Line | Count | Source | 81 | 492 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 492 | if (Kind == StorageKind::Normal) | 83 | 492 | new (&Req) Request(std::move(other.Req)); | 84 | 492 | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ExpandMemberAttributeMacrosEvEC2EOS4_ Line | Count | Source | 81 | 18.8k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 18.8k | if (Kind == StorageKind::Normal) | 83 | 18.8k | new (&Req) Request(std::move(other.Req)); | 84 | 18.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEC2EOS4_ Line | Count | Source | 81 | 6.01k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 6.01k | if (Kind == StorageKind::Normal) | 83 | 6.01k | new (&Req) Request(std::move(other.Req)); | 84 | 6.01k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEC2EOS4_ Line | Count | Source | 81 | 3.48k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 3.48k | if (Kind == StorageKind::Normal) | 83 | 3.48k | new (&Req) Request(std::move(other.Req)); | 84 | 3.48k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ThrownTypeRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsAccessorTransparentRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericParamListRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericSignatureRequestEvEC2EOS4_ Line | Count | Source | 81 | 56 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 56 | if (Kind == StorageKind::Normal) | 83 | 56 | new (&Req) Request(std::move(other.Req)); | 84 | 56 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ScopedImportLookupRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExtendedNominalRequestEvEC2EOS4_ Line | Count | Source | 81 | 12 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 12 | if (Kind == StorageKind::Normal) | 83 | 12 | new (&Req) Request(std::move(other.Req)); | 84 | 12 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 12 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 12 | if (Kind == StorageKind::Normal) | 83 | 12 | new (&Req) Request(std::move(other.Req)); | 84 | 12 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26PatternBindingEntryRequestEvEC2EOS4_ Line | Count | Source | 81 | 60 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 60 | if (Kind == StorageKind::Normal) | 83 | 60 | new (&Req) Request(std::move(other.Req)); | 84 | 60 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30RequiresOpaqueAccessorsRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25SynthesizeAccessorRequestEvEC2EOS4_ Line | Count | Source | 81 | 28 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 28 | if (Kind == StorageKind::Normal) | 83 | 28 | new (&Req) Request(std::move(other.Req)); | 84 | 28 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEC2EOS4_ Line | Count | Source | 81 | 14 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 14 | if (Kind == StorageKind::Normal) | 83 | 14 | new (&Req) Request(std::move(other.Req)); | 84 | 14 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsGetterMutatingRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsSetterMutatingRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26OpaqueReadOwnershipRequestEvEC2EOS4_ Line | Count | Source | 81 | 28 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 28 | if (Kind == StorageKind::Normal) | 83 | 28 | new (&Req) Request(std::move(other.Req)); | 84 | 28 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEC2EOS4_ Line | Count | Source | 81 | 4 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 4 | if (Kind == StorageKind::Normal) | 83 | 4 | new (&Req) Request(std::move(other.Req)); | 84 | 4 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13IsObjCRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsFinalRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17IsMoveOnlyRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16IsDynamicRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30DynamicallyReplacedDeclRequestEvEC2EOS4_ Line | Count | Source | 81 | 3.18k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 3.18k | if (Kind == StorageKind::Normal) | 83 | 3.18k | new (&Req) Request(std::move(other.Req)); | 84 | 3.18k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InterfaceTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 452 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 452 | if (Kind == StorageKind::Normal) | 83 | 452 | new (&Req) Request(std::move(other.Req)); | 84 | 452 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18AccessLevelRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23StoredPropertiesRequestEvEC2EOS4_ Line | Count | Source | 81 | 182 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 182 | if (Kind == StorageKind::Normal) | 83 | 182 | new (&Req) Request(std::move(other.Req)); | 84 | 182 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29InitAccessorPropertiesRequestEvEC2EOS4_ Line | Count | Source | 81 | 38 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 38 | if (Kind == StorageKind::Normal) | 83 | 38 | new (&Req) Request(std::move(other.Req)); | 84 | 38 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31MemberwiseInitPropertiesRequestEvEC2EOS4_ Line | Count | Source | 81 | 44 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 44 | if (Kind == StorageKind::Normal) | 83 | 44 | new (&Req) Request(std::move(other.Req)); | 84 | 44 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvEC2EOS4_ Line | Count | Source | 81 | 8 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 8 | if (Kind == StorageKind::Normal) | 83 | 8 | new (&Req) Request(std::move(other.Req)); | 84 | 8 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30PropertyWrapperTypeInfoRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsActorRequestEvEC2EOS4_ Line | Count | Source | 81 | 900 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 900 | if (Kind == StorageKind::Normal) | 83 | 900 | new (&Req) Request(std::move(other.Req)); | 84 | 900 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDistributedActorRequestEvEC2EOS4_ Line | Count | Source | 81 | 996 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 996 | if (Kind == StorageKind::Normal) | 83 | 996 | new (&Req) Request(std::move(other.Req)); | 84 | 996 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21UnderlyingTypeRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21StructuralTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 877 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 877 | if (Kind == StorageKind::Normal) | 83 | 877 | new (&Req) Request(std::move(other.Req)); | 84 | 877 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28DefaultDefinitionTypeRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18EnumRawTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 535 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 535 | if (Kind == StorageKind::Normal) | 83 | 535 | new (&Req) Request(std::move(other.Req)); | 84 | 535 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24HasMemberwiseInitRequestEvEC2EOS4_ Line | Count | Source | 81 | 70 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 70 | if (Kind == StorageKind::Normal) | 83 | 70 | new (&Req) Request(std::move(other.Req)); | 84 | 70 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SynthesizeMemberwiseInitRequestEvEC2EOS4_ Line | Count | Source | 81 | 36 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 36 | if (Kind == StorageKind::Normal) | 83 | 36 | new (&Req) Request(std::move(other.Req)); | 84 | 36 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvEC2EOS4_ Line | Count | Source | 81 | 52 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 52 | if (Kind == StorageKind::Normal) | 83 | 52 | new (&Req) Request(std::move(other.Req)); | 84 | 52 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21HasDefaultInitRequestEvEC2EOS4_ Line | Count | Source | 81 | 80 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 80 | if (Kind == StorageKind::Normal) | 83 | 80 | new (&Req) Request(std::move(other.Req)); | 84 | 80 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28SynthesizeDefaultInitRequestEvEC2EOS4_ Line | Count | Source | 81 | 12 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 12 | if (Kind == StorageKind::Normal) | 83 | 12 | new (&Req) Request(std::move(other.Req)); | 84 | 12 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GlobalActorInstanceRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20GetDestructorRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21IsDefaultActorRequestEvEC2EOS4_ Line | Count | Source | 81 | 2 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 2 | if (Kind == StorageKind::Normal) | 83 | 2 | new (&Req) Request(std::move(other.Req)); | 84 | 2 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39HasMissingDesignatedInitializersRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37InheritsSuperclassInitializersRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ClassAncestryFlagsRequestEvEC2EOS4_ Line | Count | Source | 81 | 10 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 10 | if (Kind == StorageKind::Normal) | 83 | 10 | new (&Req) Request(std::move(other.Req)); | 84 | 10 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEC2EOS4_ Line | Count | Source | 81 | 4 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 4 | if (Kind == StorageKind::Normal) | 83 | 4 | new (&Req) Request(std::move(other.Req)); | 84 | 4 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25InheritedProtocolsRequestEvEC2EOS4_ Line | Count | Source | 81 | 4 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 4 | if (Kind == StorageKind::Normal) | 83 | 4 | new (&Req) Request(std::move(other.Req)); | 84 | 4 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolRequirementsRequestEvEC2EOS4_ Line | Count | Source | 81 | 4 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 4 | if (Kind == StorageKind::Normal) | 83 | 4 | new (&Req) Request(std::move(other.Req)); | 84 | 4 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassTypeRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProtocolRequiresClassRequestEvEC2EOS4_ Line | Count | Source | 81 | 4 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 4 | if (Kind == StorageKind::Normal) | 83 | 4 | new (&Req) Request(std::move(other.Req)); | 84 | 4 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ExistentialConformsToSelfRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29PrimaryAssociatedTypesRequestEvEC2EOS4_ Line | Count | Source | 81 | 4 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 4 | if (Kind == StorageKind::Normal) | 83 | 4 | new (&Req) Request(std::move(other.Req)); | 84 | 4 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29StructuralRequirementsRequestEvEC2EOS4_ Line | Count | Source | 81 | 14 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 14 | if (Kind == StorageKind::Normal) | 83 | 14 | new (&Req) Request(std::move(other.Req)); | 84 | 14 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeAliasRequirementsRequestEvEC2EOS4_ Line | Count | Source | 81 | 14 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 14 | if (Kind == StorageKind::Normal) | 83 | 14 | new (&Req) Request(std::move(other.Req)); | 84 | 14 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolDependenciesRequestEvEC2EOS4_ Line | Count | Source | 81 | 420 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 420 | if (Kind == StorageKind::Normal) | 83 | 420 | new (&Req) Request(std::move(other.Req)); | 84 | 420 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27RequirementSignatureRequestEvEC2EOS4_ Line | Count | Source | 81 | 4 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 4 | if (Kind == StorageKind::Normal) | 83 | 4 | new (&Req) Request(std::move(other.Req)); | 84 | 4 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEC2EOS4_ Line | Count | Source | 81 | 8 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 8 | if (Kind == StorageKind::Normal) | 83 | 8 | new (&Req) Request(std::move(other.Req)); | 84 | 8 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22StorageImplInfoRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24SetterAccessLevelRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasInitAccessorRequestEvEC2EOS4_ Line | Count | Source | 81 | 1.24k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 1.24k | if (Kind == StorageKind::Normal) | 83 | 1.24k | new (&Req) Request(std::move(other.Req)); | 84 | 1.24k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEC2EOS4_ Line | Count | Source | 81 | 14.0k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 14.0k | if (Kind == StorageKind::Normal) | 83 | 14.0k | new (&Req) Request(std::move(other.Req)); | 84 | 14.0k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20NamingPatternRequestEvEC2EOS4_ Line | Count | Source | 81 | 38 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 38 | if (Kind == StorageKind::Normal) | 83 | 38 | new (&Req) Request(std::move(other.Req)); | 84 | 38 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParamSpecifierRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEC2EOS4_ Line | Count | Source | 81 | 10.1k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 10.1k | if (Kind == StorageKind::Normal) | 83 | 10.1k | new (&Req) Request(std::move(other.Req)); | 84 | 10.1k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 42 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 42 | if (Kind == StorageKind::Normal) | 83 | 42 | new (&Req) Request(std::move(other.Req)); | 84 | 42 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 42 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 42 | if (Kind == StorageKind::Normal) | 83 | 42 | new (&Req) Request(std::move(other.Req)); | 84 | 42 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEC2EOS4_ Line | Count | Source | 81 | 80 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 80 | if (Kind == StorageKind::Normal) | 83 | 80 | new (&Req) Request(std::move(other.Req)); | 84 | 80 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEC2EOS4_ Line | Count | Source | 81 | 80 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 80 | if (Kind == StorageKind::Normal) | 83 | 80 | new (&Req) Request(std::move(other.Req)); | 84 | 80 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperMutabilityRequestEvEC2EOS4_ Line | Count | Source | 81 | 102 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 102 | if (Kind == StorageKind::Normal) | 83 | 102 | new (&Req) Request(std::move(other.Req)); | 84 | 102 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DefaultArgumentInitContextRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentExprRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentTypeRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResultBuilderTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 196 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 196 | if (Kind == StorageKind::Normal) | 83 | 196 | new (&Req) Request(std::move(other.Req)); | 84 | 196 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AttachedResultBuilderRequestEvEC2EOS4_ Line | Count | Source | 81 | 405 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 405 | if (Kind == StorageKind::Normal) | 83 | 405 | new (&Req) Request(std::move(other.Req)); | 84 | 405 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ResultTypeRequestEvEC2EOS4_ Line | Count | Source | 81 | 50 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 50 | if (Kind == StorageKind::Normal) | 83 | 50 | new (&Req) Request(std::move(other.Req)); | 84 | 50 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ParseAbstractFunctionBodyRequestEvEC2EOS4_ Line | Count | Source | 81 | 90 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 90 | if (Kind == StorageKind::Normal) | 83 | 90 | new (&Req) Request(std::move(other.Req)); | 84 | 90 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckFunctionBodyRequestEvEC2EOS4_ Line | Count | Source | 81 | 163 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 163 | if (Kind == StorageKind::Normal) | 83 | 163 | new (&Req) Request(std::move(other.Req)); | 84 | 163 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsFunctionBodySkippedRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26NeedsNewVTableEntryRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEC2EOS4_ Line | Count | Source | 81 | 4.84k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 4.84k | if (Kind == StorageKind::Normal) | 83 | 4.84k | new (&Req) Request(std::move(other.Req)); | 84 | 4.84k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15IsStaticRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19SimpleDidSetRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SelfAccessKindRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20EnumRawValuesRequestEvEC2EOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEC2EOS4_ Line | Count | Source | 81 | 899 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 899 | if (Kind == StorageKind::Normal) | 83 | 899 | new (&Req) Request(std::move(other.Req)); | 84 | 899 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvEC2EOS4_ Line | Count | Source | 81 | 12 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 12 | if (Kind == StorageKind::Normal) | 83 | 12 | new (&Req) Request(std::move(other.Req)); | 84 | 12 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEC2EOS4_ Line | Count | Source | 81 | 188 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 188 | if (Kind == StorageKind::Normal) | 83 | 188 | new (&Req) Request(std::move(other.Req)); | 84 | 188 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ActorIsolationRequestEvEC2EOS4_ Line | Count | Source | 81 | 3.44k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 3.44k | if (Kind == StorageKind::Normal) | 83 | 3.44k | new (&Req) Request(std::move(other.Req)); | 84 | 3.44k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEC2EOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEC2EOS4_ DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26FragileFunctionKindRequestEvEC2EOS4_ Line | Count | Source | 81 | 457 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 457 | if (Kind == StorageKind::Normal) | 83 | 457 | new (&Req) Request(std::move(other.Req)); | 84 | 457 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEC2EOS4_ Line | Count | Source | 81 | 92 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 92 | if (Kind == StorageKind::Normal) | 83 | 92 | new (&Req) Request(std::move(other.Req)); | 84 | 92 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ABIMembersRequestEvEC2EOS4_ Line | Count | Source | 81 | 96 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 96 | if (Kind == StorageKind::Normal) | 83 | 96 | new (&Req) Request(std::move(other.Req)); | 84 | 96 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17AllMembersRequestEvEC2EOS4_ Line | Count | Source | 81 | 28 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 28 | if (Kind == StorageKind::Normal) | 83 | 28 | new (&Req) Request(std::move(other.Req)); | 84 | 28 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvEC2EOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvEC2EOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvEC2EOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEC2EOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvEC2EOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetDistributedThunkRequestEvEC2EOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvEC2EOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36GetDistributedActorIDPropertyRequestEvEC2EOS4_ Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27SemanticBriefCommentRequestEvEC2EOS4_ Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36PolymorphicEffectRequirementsRequestEvEC2EOS4_ Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PolymorphicEffectKindRequestEvEC2EOS4_ Line | Count | Source | 81 | 148 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 148 | if (Kind == StorageKind::Normal) | 83 | 148 | new (&Req) Request(std::move(other.Req)); | 84 | 148 | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ConformanceHasEffectRequestEvEC2EOS4_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CallerSideDefaultArgExprRequestEvEC2EOS4_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEC2EOS4_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEC2EOS4_ GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEC2EOS4_ Line | Count | Source | 81 | 72 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 72 | if (Kind == StorageKind::Normal) | 83 | 72 | new (&Req) Request(std::move(other.Req)); | 84 | 72 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22IsNonUserModuleRequestEvEC2EOS4_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleImplicitImportsRequestEvEC2EOS4_ Line | Count | Source | 81 | 28 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 28 | if (Kind == StorageKind::Normal) | 83 | 28 | new (&Req) Request(std::move(other.Req)); | 84 | 28 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PrimarySourceFilesRequestEvEC2EOS4_ Line | Count | Source | 81 | 24 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 24 | if (Kind == StorageKind::Normal) | 83 | 24 | new (&Req) Request(std::move(other.Req)); | 84 | 24 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEC2EOS4_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2EOS4_ Line | Count | Source | 81 | 178 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 178 | if (Kind == StorageKind::Normal) | 83 | 178 | new (&Req) Request(std::move(other.Req)); | 84 | 178 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetImplicitSendableRequestEvEC2EOS4_ Line | Count | Source | 81 | 98 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 98 | if (Kind == StorageKind::Normal) | 83 | 98 | new (&Req) Request(std::move(other.Req)); | 84 | 98 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvEC2EOS4_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEC2EOS4_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29HasImportsMatchingFlagRequestEvEC2EOS4_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16SPIGroupsRequestEvEC2EOS4_ Line | Count | Source | 81 | 3.01k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 3.01k | if (Kind == StorageKind::Normal) | 83 | 3.01k | new (&Req) Request(std::move(other.Req)); | 84 | 3.01k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ModuleLibraryLevelRequestEvEC2EOS4_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvEC2EOS4_ Line | Count | Source | 81 | 34 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 34 | if (Kind == StorageKind::Normal) | 83 | 34 | new (&Req) Request(std::move(other.Req)); | 84 | 34 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExportedSourceFileRequestEvEC2EOS4_ Line | Count | Source | 81 | 28 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 28 | if (Kind == StorageKind::Normal) | 83 | 28 | new (&Req) Request(std::move(other.Req)); | 84 | 28 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22GetSourceFileAsyncNodeEvEC2EOS4_ Line | Count | Source | 81 | 8 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 8 | if (Kind == StorageKind::Normal) | 83 | 8 | new (&Req) Request(std::move(other.Req)); | 84 | 8 | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEC2EOS4_ Line | Count | Source | 81 | 68 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 68 | if (Kind == StorageKind::Normal) | 83 | 68 | new (&Req) Request(std::move(other.Req)); | 84 | 68 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEC2EOS4_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEC2EOS4_ Line | Count | Source | 81 | 2.16k | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 2.16k | if (Kind == StorageKind::Normal) | 83 | 2.16k | new (&Req) Request(std::move(other.Req)); | 84 | 2.16k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEC2EOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsCallAsFunctionNominalRequestEvEC2EOS4_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvEC2EOS4_ Line | Count | Source | 81 | 154 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 154 | if (Kind == StorageKind::Normal) | 83 | 154 | new (&Req) Request(std::move(other.Req)); | 84 | 154 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEC2EOS4_ OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LookupInfixOperatorRequestEvEC2EOS4_ Line | Count | Source | 81 | 28 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 28 | if (Kind == StorageKind::Normal) | 83 | 28 | new (&Req) Request(std::move(other.Req)); | 84 | 28 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27LookupPrefixOperatorRequestEvEC2EOS4_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPostfixOperatorRequestEvEC2EOS4_ OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPrecedenceGroupRequestEvEC2EOS4_ Line | Count | Source | 81 | 10 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 10 | if (Kind == StorageKind::Normal) | 83 | 10 | new (&Req) Request(std::move(other.Req)); | 84 | 10 | } |
Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ExprPatternMatchRequestEvEC2EOS4_ ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ConditionalRequirementsRequestEvEC2EOS4_ Line | Count | Source | 81 | 224 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 224 | if (Kind == StorageKind::Normal) | 83 | 224 | new (&Req) Request(std::move(other.Req)); | 84 | 224 | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18TypeWitnessRequestEvEC2EOS4_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AssociatedConformanceRequestEvEC2EOS4_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ValueWitnessRequestEvEC2EOS4_ ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37LookupAllConformancesInContextRequestEvEC2EOS4_ Line | Count | Source | 81 | 126 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 126 | if (Kind == StorageKind::Normal) | 83 | 126 | new (&Req) Request(std::move(other.Req)); | 84 | 126 | } |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17RawCommentRequestEvEC2EOS4_ Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEC2EOS4_ Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IsSingleValueStmtRequestEvEC2EOS4_ Line | Count | Source | 81 | 98 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 98 | if (Kind == StorageKind::Normal) | 83 | 98 | new (&Req) Request(std::move(other.Req)); | 84 | 98 | } |
Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18BreakTargetRequestEvEC2EOS4_ Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ContinueTargetRequestEvEC2EOS4_ TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RequirementRequestEvEC2EOS4_ Line | Count | Source | 81 | 94 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 94 | if (Kind == StorageKind::Normal) | 83 | 94 | new (&Req) Request(std::move(other.Req)); | 84 | 94 | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvEC2EOS4_ Line | Count | Source | 81 | 74 | RequestKey(RequestKey &&other) : Empty(), Kind(other.Kind) { | 82 | 74 | if (Kind == StorageKind::Normal) | 83 | 74 | new (&Req) Request(std::move(other.Req)); | 84 | 74 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEC2EOS4_ |
85 | 0 | RequestKey &operator=(const RequestKey &other) { |
86 | 0 | if (&other != this) { |
87 | 0 | this->~RequestKey(); |
88 | 0 | new (this) RequestKey(other); |
89 | 0 | } |
90 | 0 | return *this; |
91 | 0 | } Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEaSERKS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvEaSERKS4_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvEaSERKS4_ |
92 | 60.7k | RequestKey &operator=(RequestKey &&other) { |
93 | 60.7k | if (&other != this) { |
94 | 60.7k | this->~RequestKey(); |
95 | 60.7k | new (this) RequestKey(std::move(other)); |
96 | 60.7k | } |
97 | 60.7k | return *this; |
98 | 60.7k | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18OptimizedIRRequestEvEaSEOS4_ Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEaSEOS4_ Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEaSEOS4_ Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEaSEOS4_ Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IDEInspectionFileRequestEvEaSEOS4_ Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEaSEOS4_ Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ConstantValueInfoRequestEvEaSEOS4_ Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEaSEOS4_ Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEaSEOS4_ Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEaSEOS4_ Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEaSEOS4_ Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEaSEOS4_ Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEaSEOS4_ Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvEaSEOS4_ IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_12IRGenRequestEvEaSEOS4_ Line | Count | Source | 92 | 1 | RequestKey &operator=(RequestKey &&other) { | 93 | 1 | if (&other != this) { | 94 | 1 | this->~RequestKey(); | 95 | 1 | new (this) RequestKey(std::move(other)); | 96 | 1 | } | 97 | 1 | return *this; | 98 | 1 | } |
Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17LoweredSILRequestEvEaSEOS4_ Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20PublicSymbolsRequestEvEaSEOS4_ Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18GenerateTBDRequestEvEaSEOS4_ Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13APIGenRequestEvEaSEOS4_ SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEaSEOS4_ Line | Count | Source | 92 | 5 | RequestKey &operator=(RequestKey &&other) { | 93 | 5 | if (&other != this) { | 94 | 5 | this->~RequestKey(); | 95 | 5 | new (this) RequestKey(std::move(other)); | 96 | 5 | } | 97 | 5 | return *this; | 98 | 5 | } |
Unexecuted instantiation: SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParseSILModuleRequestEvEaSEOS4_ Unexecuted instantiation: Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEaSEOS4_ Unexecuted instantiation: PassManager.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExecuteSILPipelineRequestEvEaSEOS4_ Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvEaSEOS4_ Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEaSEOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEaSEOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ResolveProtocolNameRequestEvEaSEOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvEaSEOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29CollectOverriddenDeclsRequestEvEaSEOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEaSEOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24TypeRelationCheckRequestEvEaSEOS4_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DirectOperatorLookupRequestEvEaSEOS4_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvEaSEOS4_ Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEaSEOS4_ Unexecuted instantiation: ParseSIL.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvEaSEOS4_ Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PreCheckResultBuilderRequestEvEaSEOS4_ Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEaSEOS4_ CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32CompareDeclSpecializationRequestEvEaSEOS4_ Line | Count | Source | 92 | 14 | RequestKey &operator=(RequestKey &&other) { | 93 | 14 | if (&other != this) { | 94 | 14 | this->~RequestKey(); | 95 | 14 | new (this) RequestKey(std::move(other)); | 96 | 14 | } | 97 | 14 | return *this; | 98 | 14 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29EnumElementExprPatternRequestEvEaSEOS4_ Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEaSEOS4_ Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvEaSEOS4_ CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDeclRefinementOfRequestEvEaSEOS4_ Line | Count | Source | 92 | 51 | RequestKey &operator=(RequestKey &&other) { | 93 | 51 | if (&other != this) { | 94 | 51 | this->~RequestKey(); | 95 | 51 | new (this) RequestKey(std::move(other)); | 96 | 51 | } | 97 | 51 | return *this; | 98 | 51 | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18CxxRecordSemanticsEvEaSEOS4_ CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvEaSEOS4_ Line | Count | Source | 92 | 40 | RequestKey &operator=(RequestKey &&other) { | 93 | 40 | if (&other != this) { | 94 | 40 | this->~RequestKey(); | 95 | 40 | new (this) RequestKey(std::move(other)); | 96 | 40 | } | 97 | 40 | return *this; | 98 | 40 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvEaSEOS4_ Line | Count | Source | 92 | 17 | RequestKey &operator=(RequestKey &&other) { | 93 | 17 | if (&other != this) { | 94 | 17 | this->~RequestKey(); | 95 | 17 | new (this) RequestKey(std::move(other)); | 96 | 17 | } | 97 | 17 | return *this; | 98 | 17 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEaSEOS4_ Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ClosureHasExplicitResultRequestEvEaSEOS4_ DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvEaSEOS4_ Line | Count | Source | 92 | 4 | RequestKey &operator=(RequestKey &&other) { | 93 | 4 | if (&other != this) { | 94 | 4 | this->~RequestKey(); | 95 | 4 | new (this) RequestKey(std::move(other)); | 96 | 4 | } | 97 | 4 | return *this; | 98 | 4 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvEaSEOS4_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEaSEOS4_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvEaSEOS4_ Unexecuted instantiation: MiscDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvEaSEOS4_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEaSEOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasIsolatedSelfRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35DistributedModuleIsAvailableRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CheckDistributedFunctionRequestEvEaSEOS4_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ValidatePrecedenceGroupRequestEvEaSEOS4_ Line | Count | Source | 92 | 16 | RequestKey &operator=(RequestKey &&other) { | 93 | 16 | if (&other != this) { | 94 | 16 | this->~RequestKey(); | 95 | 16 | new (this) RequestKey(std::move(other)); | 96 | 16 | } | 97 | 16 | return *this; | 98 | 16 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEaSEOS4_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvEaSEOS4_ Line | Count | Source | 92 | 15 | RequestKey &operator=(RequestKey &&other) { | 93 | 15 | if (&other != this) { | 94 | 15 | this->~RequestKey(); | 95 | 15 | new (this) RequestKey(std::move(other)); | 96 | 15 | } | 97 | 15 | return *this; | 98 | 15 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveImplicitMemberRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34TypeCheckObjCImplementationRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEaSEOS4_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CheckRedeclarationRequestEvEaSEOS4_ Line | Count | Source | 92 | 140 | RequestKey &operator=(RequestKey &&other) { | 93 | 140 | if (&other != this) { | 94 | 140 | this->~RequestKey(); | 95 | 140 | new (this) RequestKey(std::move(other)); | 96 | 140 | } | 97 | 140 | return *this; | 98 | 140 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEaSEOS4_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ApplyAccessNoteRequestEvEaSEOS4_ Line | Count | Source | 92 | 730 | RequestKey &operator=(RequestKey &&other) { | 93 | 730 | if (&other != this) { | 94 | 730 | this->~RequestKey(); | 95 | 730 | new (this) RequestKey(std::move(other)); | 96 | 730 | } | 97 | 730 | return *this; | 98 | 730 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveImplicitMemberRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DirectOperatorLookupRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvEaSEOS4_ TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18DefaultTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 2 | RequestKey &operator=(RequestKey &&other) { | 93 | 2 | if (&other != this) { | 94 | 2 | this->~RequestKey(); | 95 | 2 | new (this) RequestKey(std::move(other)); | 96 | 2 | } | 97 | 2 | return *this; | 98 | 2 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CompilerPluginLoadRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvEaSEOS4_ TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18PatternTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 69 | RequestKey &operator=(RequestKey &&other) { | 93 | 69 | if (&other != this) { | 94 | 69 | this->~RequestKey(); | 95 | 69 | new (this) RequestKey(std::move(other)); | 96 | 69 | } | 97 | 69 | return *this; | 98 | 69 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEaSEOS4_ TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 30 | RequestKey &operator=(RequestKey &&other) { | 93 | 30 | if (&other != this) { | 94 | 30 | this->~RequestKey(); | 95 | 30 | new (this) RequestKey(std::move(other)); | 96 | 30 | } | 97 | 30 | return *this; | 98 | 30 | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvEaSEOS4_ TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvEaSEOS4_ Line | Count | Source | 92 | 62 | RequestKey &operator=(RequestKey &&other) { | 93 | 62 | if (&other != this) { | 94 | 62 | this->~RequestKey(); | 95 | 62 | new (this) RequestKey(std::move(other)); | 96 | 62 | } | 97 | 62 | return *this; | 98 | 62 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27PreCheckFunctionBodyRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperLValuenessRequestEvEaSEOS4_ TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20ExpandAccessorMacrosEvEaSEOS4_ Line | Count | Source | 92 | 68 | RequestKey &operator=(RequestKey &&other) { | 93 | 68 | if (&other != this) { | 94 | 68 | this->~RequestKey(); | 95 | 68 | new (this) RequestKey(std::move(other)); | 96 | 68 | } | 97 | 68 | return *this; | 98 | 68 | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEaSEOS4_ Unexecuted instantiation: TypeCheckType.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ResolveTypeRequestEvEaSEOS4_ TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26TypeCheckSourceFileRequestEvEaSEOS4_ Line | Count | Source | 92 | 6 | RequestKey &operator=(RequestKey &&other) { | 93 | 6 | if (&other != this) { | 94 | 6 | this->~RequestKey(); | 95 | 6 | new (this) RequestKey(std::move(other)); | 96 | 6 | } | 97 | 6 | return *this; | 98 | 6 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvEaSEOS4_ Line | Count | Source | 92 | 13 | RequestKey &operator=(RequestKey &&other) { | 93 | 13 | if (&other != this) { | 94 | 13 | this->~RequestKey(); | 95 | 13 | new (this) RequestKey(std::move(other)); | 96 | 13 | } | 97 | 13 | return *this; | 98 | 13 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvEaSEOS4_ Line | Count | Source | 92 | 13 | RequestKey &operator=(RequestKey &&other) { | 93 | 13 | if (&other != this) { | 94 | 13 | this->~RequestKey(); | 95 | 13 | new (this) RequestKey(std::move(other)); | 96 | 13 | } | 97 | 13 | return *this; | 98 | 13 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvEaSEOS4_ Line | Count | Source | 92 | 13 | RequestKey &operator=(RequestKey &&other) { | 93 | 13 | if (&other != this) { | 94 | 13 | this->~RequestKey(); | 95 | 13 | new (this) RequestKey(std::move(other)); | 96 | 13 | } | 97 | 13 | return *this; | 98 | 13 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvEaSEOS4_ Line | Count | Source | 92 | 13 | RequestKey &operator=(RequestKey &&other) { | 93 | 13 | if (&other != this) { | 94 | 13 | this->~RequestKey(); | 95 | 13 | new (this) RequestKey(std::move(other)); | 96 | 13 | } | 97 | 13 | return *this; | 98 | 13 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvEaSEOS4_ Line | Count | Source | 92 | 119 | RequestKey &operator=(RequestKey &&other) { | 93 | 119 | if (&other != this) { | 94 | 119 | this->~RequestKey(); | 95 | 119 | new (this) RequestKey(std::move(other)); | 96 | 119 | } | 97 | 119 | return *this; | 98 | 119 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckASTNodeAtLocRequestEvEaSEOS4_ Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEaSEOS4_ Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ClangRecordMemberLookupEvEaSEOS4_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEaSEOS4_ ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEaSEOS4_ Line | Count | Source | 92 | 1.08k | RequestKey &operator=(RequestKey &&other) { | 93 | 1.08k | if (&other != this) { | 94 | 1.08k | this->~RequestKey(); | 95 | 1.08k | new (this) RequestKey(std::move(other)); | 96 | 1.08k | } | 97 | 1.08k | return *this; | 98 | 1.08k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvEaSEOS4_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ClangDirectLookupRequestEvEaSEOS4_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ClangRecordMemberLookupEvEaSEOS4_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ClangCategoryLookupRequestEvEaSEOS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEaSEOS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEaSEOS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEaSEOS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEaSEOS4_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18CxxRecordSemanticsEvEaSEOS4_ Unexecuted instantiation: ImportName.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18IsSafeUseOfCxxDeclEvEaSEOS4_ Unexecuted instantiation: ImportType.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20CxxRecordAsSwiftTypeEvEaSEOS4_ Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEaSEOS4_ Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IDEInspectionSecondPassRequestEvEaSEOS4_ Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEaSEOS4_ Unexecuted instantiation: AccessRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31TypeDeclsFromWhereClauseRequestEvEaSEOS4_ ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 3.49k | RequestKey &operator=(RequestKey &&other) { | 93 | 3.49k | if (&other != this) { | 94 | 3.49k | this->~RequestKey(); | 95 | 3.49k | new (this) RequestKey(std::move(other)); | 96 | 3.49k | } | 97 | 3.49k | return *this; | 98 | 3.49k | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEaSEOS4_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEaSEOS4_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEaSEOS4_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEaSEOS4_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEaSEOS4_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasIsolatedSelfRequestEvEaSEOS4_ Unexecuted instantiation: ASTPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ClangDirectLookupRequestEvEaSEOS4_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEaSEOS4_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30TypeEraserHasViableInitRequestEvEaSEOS4_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveTypeEraserTypeRequestEvEaSEOS4_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvEaSEOS4_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SpecializeAttrTargetDeclRequestEvEaSEOS4_ Line | Count | Source | 92 | 16 | RequestKey &operator=(RequestKey &&other) { | 93 | 16 | if (&other != this) { | 94 | 16 | this->~RequestKey(); | 95 | 16 | new (this) RequestKey(std::move(other)); | 96 | 16 | } | 97 | 16 | return *this; | 98 | 16 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36SerializeAttrGenericSignatureRequestEvEaSEOS4_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvEaSEOS4_ Line | Count | Source | 92 | 8 | RequestKey &operator=(RequestKey &&other) { | 93 | 8 | if (&other != this) { | 94 | 8 | this->~RequestKey(); | 95 | 8 | new (this) RequestKey(std::move(other)); | 96 | 8 | } | 97 | 8 | return *this; | 98 | 8 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvEaSEOS4_ Line | Count | Source | 92 | 10 | RequestKey &operator=(RequestKey &&other) { | 93 | 10 | if (&other != this) { | 94 | 10 | this->~RequestKey(); | 95 | 10 | new (this) RequestKey(std::move(other)); | 96 | 10 | } | 97 | 10 | return *this; | 98 | 10 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29ImplementsAttrProtocolRequestEvEaSEOS4_ Line | Count | Source | 92 | 17 | RequestKey &operator=(RequestKey &&other) { | 93 | 17 | if (&other != this) { | 94 | 17 | this->~RequestKey(); | 95 | 17 | new (this) RequestKey(std::move(other)); | 96 | 17 | } | 97 | 17 | return *this; | 98 | 17 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38InitAccessorReferencedVariablesRequestEvEaSEOS4_ Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33SemanticAvailableRangeAttrRequestEvEaSEOS4_ Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30SemanticUnavailableAttrRequestEvEaSEOS4_ Line | Count | Source | 92 | 317 | RequestKey &operator=(RequestKey &&other) { | 93 | 317 | if (&other != this) { | 94 | 317 | this->~RequestKey(); | 95 | 317 | new (this) RequestKey(std::move(other)); | 96 | 317 | } | 97 | 317 | return *this; | 98 | 317 | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ExpandMemberAttributeMacrosEvEaSEOS4_ Line | Count | Source | 92 | 13.3k | RequestKey &operator=(RequestKey &&other) { | 93 | 13.3k | if (&other != this) { | 94 | 13.3k | this->~RequestKey(); | 95 | 13.3k | new (this) RequestKey(std::move(other)); | 96 | 13.3k | } | 97 | 13.3k | return *this; | 98 | 13.3k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvEaSEOS4_ Line | Count | Source | 92 | 4.20k | RequestKey &operator=(RequestKey &&other) { | 93 | 4.20k | if (&other != this) { | 94 | 4.20k | this->~RequestKey(); | 95 | 4.20k | new (this) RequestKey(std::move(other)); | 96 | 4.20k | } | 97 | 4.20k | return *this; | 98 | 4.20k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvEaSEOS4_ Line | Count | Source | 92 | 2.31k | RequestKey &operator=(RequestKey &&other) { | 93 | 2.31k | if (&other != this) { | 94 | 2.31k | this->~RequestKey(); | 95 | 2.31k | new (this) RequestKey(std::move(other)); | 96 | 2.31k | } | 97 | 2.31k | return *this; | 98 | 2.31k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ThrownTypeRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsAccessorTransparentRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericParamListRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericSignatureRequestEvEaSEOS4_ Line | Count | Source | 92 | 28 | RequestKey &operator=(RequestKey &&other) { | 93 | 28 | if (&other != this) { | 94 | 28 | this->~RequestKey(); | 95 | 28 | new (this) RequestKey(std::move(other)); | 96 | 28 | } | 97 | 28 | return *this; | 98 | 28 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ScopedImportLookupRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExtendedNominalRequestEvEaSEOS4_ Line | Count | Source | 92 | 6 | RequestKey &operator=(RequestKey &&other) { | 93 | 6 | if (&other != this) { | 94 | 6 | this->~RequestKey(); | 95 | 6 | new (this) RequestKey(std::move(other)); | 96 | 6 | } | 97 | 6 | return *this; | 98 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 6 | RequestKey &operator=(RequestKey &&other) { | 93 | 6 | if (&other != this) { | 94 | 6 | this->~RequestKey(); | 95 | 6 | new (this) RequestKey(std::move(other)); | 96 | 6 | } | 97 | 6 | return *this; | 98 | 6 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26PatternBindingEntryRequestEvEaSEOS4_ Line | Count | Source | 92 | 30 | RequestKey &operator=(RequestKey &&other) { | 93 | 30 | if (&other != this) { | 94 | 30 | this->~RequestKey(); | 95 | 30 | new (this) RequestKey(std::move(other)); | 96 | 30 | } | 97 | 30 | return *this; | 98 | 30 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30RequiresOpaqueAccessorsRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25SynthesizeAccessorRequestEvEaSEOS4_ Line | Count | Source | 92 | 14 | RequestKey &operator=(RequestKey &&other) { | 93 | 14 | if (&other != this) { | 94 | 14 | this->~RequestKey(); | 95 | 14 | new (this) RequestKey(std::move(other)); | 96 | 14 | } | 97 | 14 | return *this; | 98 | 14 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvEaSEOS4_ Line | Count | Source | 92 | 7 | RequestKey &operator=(RequestKey &&other) { | 93 | 7 | if (&other != this) { | 94 | 7 | this->~RequestKey(); | 95 | 7 | new (this) RequestKey(std::move(other)); | 96 | 7 | } | 97 | 7 | return *this; | 98 | 7 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsGetterMutatingRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsSetterMutatingRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26OpaqueReadOwnershipRequestEvEaSEOS4_ Line | Count | Source | 92 | 14 | RequestKey &operator=(RequestKey &&other) { | 93 | 14 | if (&other != this) { | 94 | 14 | this->~RequestKey(); | 95 | 14 | new (this) RequestKey(std::move(other)); | 96 | 14 | } | 97 | 14 | return *this; | 98 | 14 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvEaSEOS4_ Line | Count | Source | 92 | 2 | RequestKey &operator=(RequestKey &&other) { | 93 | 2 | if (&other != this) { | 94 | 2 | this->~RequestKey(); | 95 | 2 | new (this) RequestKey(std::move(other)); | 96 | 2 | } | 97 | 2 | return *this; | 98 | 2 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13IsObjCRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsFinalRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17IsMoveOnlyRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16IsDynamicRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30DynamicallyReplacedDeclRequestEvEaSEOS4_ Line | Count | Source | 92 | 2.16k | RequestKey &operator=(RequestKey &&other) { | 93 | 2.16k | if (&other != this) { | 94 | 2.16k | this->~RequestKey(); | 95 | 2.16k | new (this) RequestKey(std::move(other)); | 96 | 2.16k | } | 97 | 2.16k | return *this; | 98 | 2.16k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InterfaceTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 297 | RequestKey &operator=(RequestKey &&other) { | 93 | 297 | if (&other != this) { | 94 | 297 | this->~RequestKey(); | 95 | 297 | new (this) RequestKey(std::move(other)); | 96 | 297 | } | 97 | 297 | return *this; | 98 | 297 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18AccessLevelRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23StoredPropertiesRequestEvEaSEOS4_ Line | Count | Source | 92 | 91 | RequestKey &operator=(RequestKey &&other) { | 93 | 91 | if (&other != this) { | 94 | 91 | this->~RequestKey(); | 95 | 91 | new (this) RequestKey(std::move(other)); | 96 | 91 | } | 97 | 91 | return *this; | 98 | 91 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29InitAccessorPropertiesRequestEvEaSEOS4_ Line | Count | Source | 92 | 19 | RequestKey &operator=(RequestKey &&other) { | 93 | 19 | if (&other != this) { | 94 | 19 | this->~RequestKey(); | 95 | 19 | new (this) RequestKey(std::move(other)); | 96 | 19 | } | 97 | 19 | return *this; | 98 | 19 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31MemberwiseInitPropertiesRequestEvEaSEOS4_ Line | Count | Source | 92 | 22 | RequestKey &operator=(RequestKey &&other) { | 93 | 22 | if (&other != this) { | 94 | 22 | this->~RequestKey(); | 95 | 22 | new (this) RequestKey(std::move(other)); | 96 | 22 | } | 97 | 22 | return *this; | 98 | 22 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvEaSEOS4_ Line | Count | Source | 92 | 4 | RequestKey &operator=(RequestKey &&other) { | 93 | 4 | if (&other != this) { | 94 | 4 | this->~RequestKey(); | 95 | 4 | new (this) RequestKey(std::move(other)); | 96 | 4 | } | 97 | 4 | return *this; | 98 | 4 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30PropertyWrapperTypeInfoRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsActorRequestEvEaSEOS4_ Line | Count | Source | 92 | 592 | RequestKey &operator=(RequestKey &&other) { | 93 | 592 | if (&other != this) { | 94 | 592 | this->~RequestKey(); | 95 | 592 | new (this) RequestKey(std::move(other)); | 96 | 592 | } | 97 | 592 | return *this; | 98 | 592 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDistributedActorRequestEvEaSEOS4_ Line | Count | Source | 92 | 640 | RequestKey &operator=(RequestKey &&other) { | 93 | 640 | if (&other != this) { | 94 | 640 | this->~RequestKey(); | 95 | 640 | new (this) RequestKey(std::move(other)); | 96 | 640 | } | 97 | 640 | return *this; | 98 | 640 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21UnderlyingTypeRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21StructuralTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 533 | RequestKey &operator=(RequestKey &&other) { | 93 | 533 | if (&other != this) { | 94 | 533 | this->~RequestKey(); | 95 | 533 | new (this) RequestKey(std::move(other)); | 96 | 533 | } | 97 | 533 | return *this; | 98 | 533 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28DefaultDefinitionTypeRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18EnumRawTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 291 | RequestKey &operator=(RequestKey &&other) { | 93 | 291 | if (&other != this) { | 94 | 291 | this->~RequestKey(); | 95 | 291 | new (this) RequestKey(std::move(other)); | 96 | 291 | } | 97 | 291 | return *this; | 98 | 291 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24HasMemberwiseInitRequestEvEaSEOS4_ Line | Count | Source | 92 | 35 | RequestKey &operator=(RequestKey &&other) { | 93 | 35 | if (&other != this) { | 94 | 35 | this->~RequestKey(); | 95 | 35 | new (this) RequestKey(std::move(other)); | 96 | 35 | } | 97 | 35 | return *this; | 98 | 35 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SynthesizeMemberwiseInitRequestEvEaSEOS4_ Line | Count | Source | 92 | 18 | RequestKey &operator=(RequestKey &&other) { | 93 | 18 | if (&other != this) { | 94 | 18 | this->~RequestKey(); | 95 | 18 | new (this) RequestKey(std::move(other)); | 96 | 18 | } | 97 | 18 | return *this; | 98 | 18 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvEaSEOS4_ Line | Count | Source | 92 | 26 | RequestKey &operator=(RequestKey &&other) { | 93 | 26 | if (&other != this) { | 94 | 26 | this->~RequestKey(); | 95 | 26 | new (this) RequestKey(std::move(other)); | 96 | 26 | } | 97 | 26 | return *this; | 98 | 26 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21HasDefaultInitRequestEvEaSEOS4_ Line | Count | Source | 92 | 40 | RequestKey &operator=(RequestKey &&other) { | 93 | 40 | if (&other != this) { | 94 | 40 | this->~RequestKey(); | 95 | 40 | new (this) RequestKey(std::move(other)); | 96 | 40 | } | 97 | 40 | return *this; | 98 | 40 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28SynthesizeDefaultInitRequestEvEaSEOS4_ Line | Count | Source | 92 | 6 | RequestKey &operator=(RequestKey &&other) { | 93 | 6 | if (&other != this) { | 94 | 6 | this->~RequestKey(); | 95 | 6 | new (this) RequestKey(std::move(other)); | 96 | 6 | } | 97 | 6 | return *this; | 98 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GlobalActorInstanceRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20GetDestructorRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21IsDefaultActorRequestEvEaSEOS4_ Line | Count | Source | 92 | 1 | RequestKey &operator=(RequestKey &&other) { | 93 | 1 | if (&other != this) { | 94 | 1 | this->~RequestKey(); | 95 | 1 | new (this) RequestKey(std::move(other)); | 96 | 1 | } | 97 | 1 | return *this; | 98 | 1 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39HasMissingDesignatedInitializersRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37InheritsSuperclassInitializersRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ClassAncestryFlagsRequestEvEaSEOS4_ Line | Count | Source | 92 | 5 | RequestKey &operator=(RequestKey &&other) { | 93 | 5 | if (&other != this) { | 94 | 5 | this->~RequestKey(); | 95 | 5 | new (this) RequestKey(std::move(other)); | 96 | 5 | } | 97 | 5 | return *this; | 98 | 5 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvEaSEOS4_ Line | Count | Source | 92 | 2 | RequestKey &operator=(RequestKey &&other) { | 93 | 2 | if (&other != this) { | 94 | 2 | this->~RequestKey(); | 95 | 2 | new (this) RequestKey(std::move(other)); | 96 | 2 | } | 97 | 2 | return *this; | 98 | 2 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25InheritedProtocolsRequestEvEaSEOS4_ Line | Count | Source | 92 | 2 | RequestKey &operator=(RequestKey &&other) { | 93 | 2 | if (&other != this) { | 94 | 2 | this->~RequestKey(); | 95 | 2 | new (this) RequestKey(std::move(other)); | 96 | 2 | } | 97 | 2 | return *this; | 98 | 2 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolRequirementsRequestEvEaSEOS4_ Line | Count | Source | 92 | 2 | RequestKey &operator=(RequestKey &&other) { | 93 | 2 | if (&other != this) { | 94 | 2 | this->~RequestKey(); | 95 | 2 | new (this) RequestKey(std::move(other)); | 96 | 2 | } | 97 | 2 | return *this; | 98 | 2 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassTypeRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProtocolRequiresClassRequestEvEaSEOS4_ Line | Count | Source | 92 | 2 | RequestKey &operator=(RequestKey &&other) { | 93 | 2 | if (&other != this) { | 94 | 2 | this->~RequestKey(); | 95 | 2 | new (this) RequestKey(std::move(other)); | 96 | 2 | } | 97 | 2 | return *this; | 98 | 2 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ExistentialConformsToSelfRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29PrimaryAssociatedTypesRequestEvEaSEOS4_ Line | Count | Source | 92 | 2 | RequestKey &operator=(RequestKey &&other) { | 93 | 2 | if (&other != this) { | 94 | 2 | this->~RequestKey(); | 95 | 2 | new (this) RequestKey(std::move(other)); | 96 | 2 | } | 97 | 2 | return *this; | 98 | 2 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29StructuralRequirementsRequestEvEaSEOS4_ Line | Count | Source | 92 | 7 | RequestKey &operator=(RequestKey &&other) { | 93 | 7 | if (&other != this) { | 94 | 7 | this->~RequestKey(); | 95 | 7 | new (this) RequestKey(std::move(other)); | 96 | 7 | } | 97 | 7 | return *this; | 98 | 7 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeAliasRequirementsRequestEvEaSEOS4_ Line | Count | Source | 92 | 7 | RequestKey &operator=(RequestKey &&other) { | 93 | 7 | if (&other != this) { | 94 | 7 | this->~RequestKey(); | 95 | 7 | new (this) RequestKey(std::move(other)); | 96 | 7 | } | 97 | 7 | return *this; | 98 | 7 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolDependenciesRequestEvEaSEOS4_ Line | Count | Source | 92 | 210 | RequestKey &operator=(RequestKey &&other) { | 93 | 210 | if (&other != this) { | 94 | 210 | this->~RequestKey(); | 95 | 210 | new (this) RequestKey(std::move(other)); | 96 | 210 | } | 97 | 210 | return *this; | 98 | 210 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27RequirementSignatureRequestEvEaSEOS4_ Line | Count | Source | 92 | 2 | RequestKey &operator=(RequestKey &&other) { | 93 | 2 | if (&other != this) { | 94 | 2 | this->~RequestKey(); | 95 | 2 | new (this) RequestKey(std::move(other)); | 96 | 2 | } | 97 | 2 | return *this; | 98 | 2 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEaSEOS4_ Line | Count | Source | 92 | 4 | RequestKey &operator=(RequestKey &&other) { | 93 | 4 | if (&other != this) { | 94 | 4 | this->~RequestKey(); | 95 | 4 | new (this) RequestKey(std::move(other)); | 96 | 4 | } | 97 | 4 | return *this; | 98 | 4 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22StorageImplInfoRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24SetterAccessLevelRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasInitAccessorRequestEvEaSEOS4_ Line | Count | Source | 92 | 835 | RequestKey &operator=(RequestKey &&other) { | 93 | 835 | if (&other != this) { | 94 | 835 | this->~RequestKey(); | 95 | 835 | new (this) RequestKey(std::move(other)); | 96 | 835 | } | 97 | 835 | return *this; | 98 | 835 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvEaSEOS4_ Line | Count | Source | 92 | 9.67k | RequestKey &operator=(RequestKey &&other) { | 93 | 9.67k | if (&other != this) { | 94 | 9.67k | this->~RequestKey(); | 95 | 9.67k | new (this) RequestKey(std::move(other)); | 96 | 9.67k | } | 97 | 9.67k | return *this; | 98 | 9.67k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20NamingPatternRequestEvEaSEOS4_ Line | Count | Source | 92 | 19 | RequestKey &operator=(RequestKey &&other) { | 93 | 19 | if (&other != this) { | 94 | 19 | this->~RequestKey(); | 95 | 19 | new (this) RequestKey(std::move(other)); | 96 | 19 | } | 97 | 19 | return *this; | 98 | 19 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParamSpecifierRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvEaSEOS4_ Line | Count | Source | 92 | 7.25k | RequestKey &operator=(RequestKey &&other) { | 93 | 7.25k | if (&other != this) { | 94 | 7.25k | this->~RequestKey(); | 95 | 7.25k | new (this) RequestKey(std::move(other)); | 96 | 7.25k | } | 97 | 7.25k | return *this; | 98 | 7.25k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 21 | RequestKey &operator=(RequestKey &&other) { | 93 | 21 | if (&other != this) { | 94 | 21 | this->~RequestKey(); | 95 | 21 | new (this) RequestKey(std::move(other)); | 96 | 21 | } | 97 | 21 | return *this; | 98 | 21 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 21 | RequestKey &operator=(RequestKey &&other) { | 93 | 21 | if (&other != this) { | 94 | 21 | this->~RequestKey(); | 95 | 21 | new (this) RequestKey(std::move(other)); | 96 | 21 | } | 97 | 21 | return *this; | 98 | 21 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEaSEOS4_ Line | Count | Source | 92 | 40 | RequestKey &operator=(RequestKey &&other) { | 93 | 40 | if (&other != this) { | 94 | 40 | this->~RequestKey(); | 95 | 40 | new (this) RequestKey(std::move(other)); | 96 | 40 | } | 97 | 40 | return *this; | 98 | 40 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEaSEOS4_ Line | Count | Source | 92 | 40 | RequestKey &operator=(RequestKey &&other) { | 93 | 40 | if (&other != this) { | 94 | 40 | this->~RequestKey(); | 95 | 40 | new (this) RequestKey(std::move(other)); | 96 | 40 | } | 97 | 40 | return *this; | 98 | 40 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperMutabilityRequestEvEaSEOS4_ Line | Count | Source | 92 | 51 | RequestKey &operator=(RequestKey &&other) { | 93 | 51 | if (&other != this) { | 94 | 51 | this->~RequestKey(); | 95 | 51 | new (this) RequestKey(std::move(other)); | 96 | 51 | } | 97 | 51 | return *this; | 98 | 51 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DefaultArgumentInitContextRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentExprRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentTypeRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResultBuilderTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 98 | RequestKey &operator=(RequestKey &&other) { | 93 | 98 | if (&other != this) { | 94 | 98 | this->~RequestKey(); | 95 | 98 | new (this) RequestKey(std::move(other)); | 96 | 98 | } | 97 | 98 | return *this; | 98 | 98 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AttachedResultBuilderRequestEvEaSEOS4_ Line | Count | Source | 92 | 226 | RequestKey &operator=(RequestKey &&other) { | 93 | 226 | if (&other != this) { | 94 | 226 | this->~RequestKey(); | 95 | 226 | new (this) RequestKey(std::move(other)); | 96 | 226 | } | 97 | 226 | return *this; | 98 | 226 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ResultTypeRequestEvEaSEOS4_ Line | Count | Source | 92 | 25 | RequestKey &operator=(RequestKey &&other) { | 93 | 25 | if (&other != this) { | 94 | 25 | this->~RequestKey(); | 95 | 25 | new (this) RequestKey(std::move(other)); | 96 | 25 | } | 97 | 25 | return *this; | 98 | 25 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ParseAbstractFunctionBodyRequestEvEaSEOS4_ Line | Count | Source | 92 | 45 | RequestKey &operator=(RequestKey &&other) { | 93 | 45 | if (&other != this) { | 94 | 45 | this->~RequestKey(); | 95 | 45 | new (this) RequestKey(std::move(other)); | 96 | 45 | } | 97 | 45 | return *this; | 98 | 45 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckFunctionBodyRequestEvEaSEOS4_ Line | Count | Source | 92 | 105 | RequestKey &operator=(RequestKey &&other) { | 93 | 105 | if (&other != this) { | 94 | 105 | this->~RequestKey(); | 95 | 105 | new (this) RequestKey(std::move(other)); | 96 | 105 | } | 97 | 105 | return *this; | 98 | 105 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsFunctionBodySkippedRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26NeedsNewVTableEntryRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvEaSEOS4_ Line | Count | Source | 92 | 3.25k | RequestKey &operator=(RequestKey &&other) { | 93 | 3.25k | if (&other != this) { | 94 | 3.25k | this->~RequestKey(); | 95 | 3.25k | new (this) RequestKey(std::move(other)); | 96 | 3.25k | } | 97 | 3.25k | return *this; | 98 | 3.25k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15IsStaticRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19SimpleDidSetRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SelfAccessKindRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20EnumRawValuesRequestEvEaSEOS4_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvEaSEOS4_ Line | Count | Source | 92 | 544 | RequestKey &operator=(RequestKey &&other) { | 93 | 544 | if (&other != this) { | 94 | 544 | this->~RequestKey(); | 95 | 544 | new (this) RequestKey(std::move(other)); | 96 | 544 | } | 97 | 544 | return *this; | 98 | 544 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvEaSEOS4_ Line | Count | Source | 92 | 6 | RequestKey &operator=(RequestKey &&other) { | 93 | 6 | if (&other != this) { | 94 | 6 | this->~RequestKey(); | 95 | 6 | new (this) RequestKey(std::move(other)); | 96 | 6 | } | 97 | 6 | return *this; | 98 | 6 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvEaSEOS4_ Line | Count | Source | 92 | 94 | RequestKey &operator=(RequestKey &&other) { | 93 | 94 | if (&other != this) { | 94 | 94 | this->~RequestKey(); | 95 | 94 | new (this) RequestKey(std::move(other)); | 96 | 94 | } | 97 | 94 | return *this; | 98 | 94 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ActorIsolationRequestEvEaSEOS4_ Line | Count | Source | 92 | 2.36k | RequestKey &operator=(RequestKey &&other) { | 93 | 2.36k | if (&other != this) { | 94 | 2.36k | this->~RequestKey(); | 95 | 2.36k | new (this) RequestKey(std::move(other)); | 96 | 2.36k | } | 97 | 2.36k | return *this; | 98 | 2.36k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvEaSEOS4_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveImplicitMemberRequestEvEaSEOS4_ DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26FragileFunctionKindRequestEvEaSEOS4_ Line | Count | Source | 92 | 252 | RequestKey &operator=(RequestKey &&other) { | 93 | 252 | if (&other != this) { | 94 | 252 | this->~RequestKey(); | 95 | 252 | new (this) RequestKey(std::move(other)); | 96 | 252 | } | 97 | 252 | return *this; | 98 | 252 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvEaSEOS4_ Line | Count | Source | 92 | 46 | RequestKey &operator=(RequestKey &&other) { | 93 | 46 | if (&other != this) { | 94 | 46 | this->~RequestKey(); | 95 | 46 | new (this) RequestKey(std::move(other)); | 96 | 46 | } | 97 | 46 | return *this; | 98 | 46 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ABIMembersRequestEvEaSEOS4_ Line | Count | Source | 92 | 48 | RequestKey &operator=(RequestKey &&other) { | 93 | 48 | if (&other != this) { | 94 | 48 | this->~RequestKey(); | 95 | 48 | new (this) RequestKey(std::move(other)); | 96 | 48 | } | 97 | 48 | return *this; | 98 | 48 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17AllMembersRequestEvEaSEOS4_ Line | Count | Source | 92 | 14 | RequestKey &operator=(RequestKey &&other) { | 93 | 14 | if (&other != this) { | 94 | 14 | this->~RequestKey(); | 95 | 14 | new (this) RequestKey(std::move(other)); | 96 | 14 | } | 97 | 14 | return *this; | 98 | 14 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvEaSEOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvEaSEOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvEaSEOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEaSEOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvEaSEOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetDistributedThunkRequestEvEaSEOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvEaSEOS4_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36GetDistributedActorIDPropertyRequestEvEaSEOS4_ Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27SemanticBriefCommentRequestEvEaSEOS4_ Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36PolymorphicEffectRequirementsRequestEvEaSEOS4_ Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PolymorphicEffectKindRequestEvEaSEOS4_ Line | Count | Source | 92 | 74 | RequestKey &operator=(RequestKey &&other) { | 93 | 74 | if (&other != this) { | 94 | 74 | this->~RequestKey(); | 95 | 74 | new (this) RequestKey(std::move(other)); | 96 | 74 | } | 97 | 74 | return *this; | 98 | 74 | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ConformanceHasEffectRequestEvEaSEOS4_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CallerSideDefaultArgExprRequestEvEaSEOS4_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvEaSEOS4_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvEaSEOS4_ GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEaSEOS4_ Line | Count | Source | 92 | 36 | RequestKey &operator=(RequestKey &&other) { | 93 | 36 | if (&other != this) { | 94 | 36 | this->~RequestKey(); | 95 | 36 | new (this) RequestKey(std::move(other)); | 96 | 36 | } | 97 | 36 | return *this; | 98 | 36 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22IsNonUserModuleRequestEvEaSEOS4_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleImplicitImportsRequestEvEaSEOS4_ Line | Count | Source | 92 | 14 | RequestKey &operator=(RequestKey &&other) { | 93 | 14 | if (&other != this) { | 94 | 14 | this->~RequestKey(); | 95 | 14 | new (this) RequestKey(std::move(other)); | 96 | 14 | } | 97 | 14 | return *this; | 98 | 14 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PrimarySourceFilesRequestEvEaSEOS4_ Line | Count | Source | 92 | 12 | RequestKey &operator=(RequestKey &&other) { | 93 | 12 | if (&other != this) { | 94 | 12 | this->~RequestKey(); | 95 | 12 | new (this) RequestKey(std::move(other)); | 96 | 12 | } | 97 | 12 | return *this; | 98 | 12 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvEaSEOS4_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEaSEOS4_ Line | Count | Source | 92 | 89 | RequestKey &operator=(RequestKey &&other) { | 93 | 89 | if (&other != this) { | 94 | 89 | this->~RequestKey(); | 95 | 89 | new (this) RequestKey(std::move(other)); | 96 | 89 | } | 97 | 89 | return *this; | 98 | 89 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetImplicitSendableRequestEvEaSEOS4_ Line | Count | Source | 92 | 49 | RequestKey &operator=(RequestKey &&other) { | 93 | 49 | if (&other != this) { | 94 | 49 | this->~RequestKey(); | 95 | 49 | new (this) RequestKey(std::move(other)); | 96 | 49 | } | 97 | 49 | return *this; | 98 | 49 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvEaSEOS4_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvEaSEOS4_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29HasImportsMatchingFlagRequestEvEaSEOS4_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16SPIGroupsRequestEvEaSEOS4_ Line | Count | Source | 92 | 2.05k | RequestKey &operator=(RequestKey &&other) { | 93 | 2.05k | if (&other != this) { | 94 | 2.05k | this->~RequestKey(); | 95 | 2.05k | new (this) RequestKey(std::move(other)); | 96 | 2.05k | } | 97 | 2.05k | return *this; | 98 | 2.05k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ModuleLibraryLevelRequestEvEaSEOS4_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvEaSEOS4_ Line | Count | Source | 92 | 17 | RequestKey &operator=(RequestKey &&other) { | 93 | 17 | if (&other != this) { | 94 | 17 | this->~RequestKey(); | 95 | 17 | new (this) RequestKey(std::move(other)); | 96 | 17 | } | 97 | 17 | return *this; | 98 | 17 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExportedSourceFileRequestEvEaSEOS4_ Line | Count | Source | 92 | 14 | RequestKey &operator=(RequestKey &&other) { | 93 | 14 | if (&other != this) { | 94 | 14 | this->~RequestKey(); | 95 | 14 | new (this) RequestKey(std::move(other)); | 96 | 14 | } | 97 | 14 | return *this; | 98 | 14 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22GetSourceFileAsyncNodeEvEaSEOS4_ Line | Count | Source | 92 | 4 | RequestKey &operator=(RequestKey &&other) { | 93 | 4 | if (&other != this) { | 94 | 4 | this->~RequestKey(); | 95 | 4 | new (this) RequestKey(std::move(other)); | 96 | 4 | } | 97 | 4 | return *this; | 98 | 4 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32LookupConformanceInModuleRequestEvEaSEOS4_ Unexecuted instantiation: ModuleNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21LookupInModuleRequestEvEaSEOS4_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEaSEOS4_ Line | Count | Source | 92 | 34 | RequestKey &operator=(RequestKey &&other) { | 93 | 34 | if (&other != this) { | 94 | 34 | this->~RequestKey(); | 95 | 34 | new (this) RequestKey(std::move(other)); | 96 | 34 | } | 97 | 34 | return *this; | 98 | 34 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvEaSEOS4_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEaSEOS4_ Line | Count | Source | 92 | 1.46k | RequestKey &operator=(RequestKey &&other) { | 93 | 1.46k | if (&other != this) { | 94 | 1.46k | this->~RequestKey(); | 95 | 1.46k | new (this) RequestKey(std::move(other)); | 96 | 1.46k | } | 97 | 1.46k | return *this; | 98 | 1.46k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsCallAsFunctionNominalRequestEvEaSEOS4_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvEaSEOS4_ Line | Count | Source | 92 | 77 | RequestKey &operator=(RequestKey &&other) { | 93 | 77 | if (&other != this) { | 94 | 77 | this->~RequestKey(); | 95 | 77 | new (this) RequestKey(std::move(other)); | 96 | 77 | } | 97 | 77 | return *this; | 98 | 77 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32SelfBoundsFromWhereClauseRequestEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37SelfBoundsFromGenericSignatureRequestEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24UnqualifiedLookupRequestEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19DirectLookupRequestEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CXXNamespaceMemberLookupEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ClangRecordMemberLookupEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22AnyObjectLookupRequestEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22QualifiedLookupRequestEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleQualifiedLookupRequestEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36UnderlyingTypeDeclsReferencedRequestEvEaSEOS4_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InheritedDeclsReferencedRequestEvEaSEOS4_ OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LookupInfixOperatorRequestEvEaSEOS4_ Line | Count | Source | 92 | 14 | RequestKey &operator=(RequestKey &&other) { | 93 | 14 | if (&other != this) { | 94 | 14 | this->~RequestKey(); | 95 | 14 | new (this) RequestKey(std::move(other)); | 96 | 14 | } | 97 | 14 | return *this; | 98 | 14 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27LookupPrefixOperatorRequestEvEaSEOS4_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPostfixOperatorRequestEvEaSEOS4_ OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPrecedenceGroupRequestEvEaSEOS4_ Line | Count | Source | 92 | 5 | RequestKey &operator=(RequestKey &&other) { | 93 | 5 | if (&other != this) { | 94 | 5 | this->~RequestKey(); | 95 | 5 | new (this) RequestKey(std::move(other)); | 96 | 5 | } | 97 | 5 | return *this; | 98 | 5 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DirectOperatorLookupRequestEvEaSEOS4_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvEaSEOS4_ Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ExprPatternMatchRequestEvEaSEOS4_ ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ConditionalRequirementsRequestEvEaSEOS4_ Line | Count | Source | 92 | 112 | RequestKey &operator=(RequestKey &&other) { | 93 | 112 | if (&other != this) { | 94 | 112 | this->~RequestKey(); | 95 | 112 | new (this) RequestKey(std::move(other)); | 96 | 112 | } | 97 | 112 | return *this; | 98 | 112 | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18TypeWitnessRequestEvEaSEOS4_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AssociatedConformanceRequestEvEaSEOS4_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ValueWitnessRequestEvEaSEOS4_ ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37LookupAllConformancesInContextRequestEvEaSEOS4_ Line | Count | Source | 92 | 63 | RequestKey &operator=(RequestKey &&other) { | 93 | 63 | if (&other != this) { | 94 | 63 | this->~RequestKey(); | 95 | 63 | new (this) RequestKey(std::move(other)); | 96 | 63 | } | 97 | 63 | return *this; | 98 | 63 | } |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17RawCommentRequestEvEaSEOS4_ Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvEaSEOS4_ Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IsSingleValueStmtRequestEvEaSEOS4_ Line | Count | Source | 92 | 49 | RequestKey &operator=(RequestKey &&other) { | 93 | 49 | if (&other != this) { | 94 | 49 | this->~RequestKey(); | 95 | 49 | new (this) RequestKey(std::move(other)); | 96 | 49 | } | 97 | 49 | return *this; | 98 | 49 | } |
Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18BreakTargetRequestEvEaSEOS4_ Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ContinueTargetRequestEvEaSEOS4_ TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RequirementRequestEvEaSEOS4_ Line | Count | Source | 92 | 47 | RequestKey &operator=(RequestKey &&other) { | 93 | 47 | if (&other != this) { | 94 | 47 | this->~RequestKey(); | 95 | 47 | new (this) RequestKey(std::move(other)); | 96 | 47 | } | 97 | 47 | return *this; | 98 | 47 | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvEaSEOS4_ Line | Count | Source | 92 | 37 | RequestKey &operator=(RequestKey &&other) { | 93 | 37 | if (&other != this) { | 94 | 37 | this->~RequestKey(); | 95 | 37 | new (this) RequestKey(std::move(other)); | 96 | 37 | } | 97 | 37 | return *this; | 98 | 37 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvEaSEOS4_ |
99 | | |
100 | 637k | ~RequestKey() { |
101 | 637k | if (Kind == StorageKind::Normal) |
102 | 119k | Req.~Request(); |
103 | 637k | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvED2Ev Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvED2Ev Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvED2Ev Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IDEInspectionFileRequestEvED2Ev Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvED2Ev Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ConstantValueInfoRequestEvED2Ev Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvED2Ev Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvED2Ev IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_12IRGenRequestEvED2Ev Line | Count | Source | 100 | 75 | ~RequestKey() { | 101 | 75 | if (Kind == StorageKind::Normal) | 102 | 3 | Req.~Request(); | 103 | 75 | } |
SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvED2Ev Line | Count | Source | 100 | 375 | ~RequestKey() { | 101 | 375 | if (Kind == StorageKind::Normal) | 102 | 15 | Req.~Request(); | 103 | 375 | } |
Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvED2Ev Line | Count | Source | 100 | 16 | ~RequestKey() { | 101 | 16 | if (Kind == StorageKind::Normal) | 102 | 0 | Req.~Request(); | 103 | 16 | } |
Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvED2Ev Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvED2Ev Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvED2Ev Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ResolveProtocolNameRequestEvED2Ev Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvED2Ev Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29CollectOverriddenDeclsRequestEvED2Ev Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvED2Ev Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24TypeRelationCheckRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvED2Ev Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvED2Ev Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvED2Ev Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PreCheckResultBuilderRequestEvED2Ev Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvED2Ev CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32CompareDeclSpecializationRequestEvED2Ev Line | Count | Source | 100 | 335 | ~RequestKey() { | 101 | 335 | if (Kind == StorageKind::Normal) | 102 | 42 | Req.~Request(); | 103 | 335 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29EnumElementExprPatternRequestEvED2Ev Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvED2Ev CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDeclRefinementOfRequestEvED2Ev Line | Count | Source | 100 | 744 | ~RequestKey() { | 101 | 744 | if (Kind == StorageKind::Normal) | 102 | 153 | Req.~Request(); | 103 | 744 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvED2Ev Line | Count | Source | 100 | 1.01k | ~RequestKey() { | 101 | 1.01k | if (Kind == StorageKind::Normal) | 102 | 120 | Req.~Request(); | 103 | 1.01k | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvED2Ev Line | Count | Source | 100 | 461 | ~RequestKey() { | 101 | 461 | if (Kind == StorageKind::Normal) | 102 | 51 | Req.~Request(); | 103 | 461 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvED2Ev Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ClosureHasExplicitResultRequestEvED2Ev DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvED2Ev Line | Count | Source | 100 | 91 | ~RequestKey() { | 101 | 91 | if (Kind == StorageKind::Normal) | 102 | 12 | Req.~Request(); | 103 | 91 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvED2Ev Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvED2Ev Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvED2Ev Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvED2Ev Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvED2Ev Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvED2Ev Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvED2Ev Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvED2Ev Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvED2Ev Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvED2Ev Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvED2Ev Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvED2Ev Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35DistributedModuleIsAvailableRequestEvED2Ev Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CheckDistributedFunctionRequestEvED2Ev TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ValidatePrecedenceGroupRequestEvED2Ev Line | Count | Source | 100 | 449 | ~RequestKey() { | 101 | 449 | if (Kind == StorageKind::Normal) | 102 | 48 | Req.~Request(); | 103 | 449 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvED2Ev TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvED2Ev Line | Count | Source | 100 | 457 | ~RequestKey() { | 101 | 457 | if (Kind == StorageKind::Normal) | 102 | 45 | Req.~Request(); | 103 | 457 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvED2Ev Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvED2Ev Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvED2Ev Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvED2Ev Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34TypeCheckObjCImplementationRequestEvED2Ev Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvED2Ev Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvED2Ev TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CheckRedeclarationRequestEvED2Ev Line | Count | Source | 100 | 1.48k | ~RequestKey() { | 101 | 1.48k | if (Kind == StorageKind::Normal) | 102 | 326 | Req.~Request(); | 103 | 1.48k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvED2Ev TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ApplyAccessNoteRequestEvED2Ev Line | Count | Source | 100 | 7.16k | ~RequestKey() { | 101 | 7.16k | if (Kind == StorageKind::Normal) | 102 | 1.62k | Req.~Request(); | 103 | 7.16k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvED2Ev TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18DefaultTypeRequestEvED2Ev Line | Count | Source | 100 | 157 | ~RequestKey() { | 101 | 157 | if (Kind == StorageKind::Normal) | 102 | 6 | Req.~Request(); | 103 | 157 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvED2Ev Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvED2Ev Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CompilerPluginLoadRequestEvED2Ev Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvED2Ev TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18PatternTypeRequestEvED2Ev Line | Count | Source | 100 | 1.02k | ~RequestKey() { | 101 | 1.02k | if (Kind == StorageKind::Normal) | 102 | 207 | Req.~Request(); | 103 | 1.02k | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvED2Ev Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvED2Ev Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvED2Ev Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvED2Ev TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvED2Ev Line | Count | Source | 100 | 448 | ~RequestKey() { | 101 | 448 | if (Kind == StorageKind::Normal) | 102 | 90 | Req.~Request(); | 103 | 448 | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvED2Ev Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvED2Ev TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvED2Ev Line | Count | Source | 100 | 951 | ~RequestKey() { | 101 | 951 | if (Kind == StorageKind::Normal) | 102 | 186 | Req.~Request(); | 103 | 951 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvED2Ev Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvED2Ev Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvED2Ev Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperLValuenessRequestEvED2Ev TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20ExpandAccessorMacrosEvED2Ev Line | Count | Source | 100 | 869 | ~RequestKey() { | 101 | 869 | if (Kind == StorageKind::Normal) | 102 | 204 | Req.~Request(); | 103 | 869 | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvED2Ev TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26TypeCheckSourceFileRequestEvED2Ev Line | Count | Source | 100 | 456 | ~RequestKey() { | 101 | 456 | if (Kind == StorageKind::Normal) | 102 | 18 | Req.~Request(); | 103 | 456 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvED2Ev Line | Count | Source | 100 | 949 | ~RequestKey() { | 101 | 949 | if (Kind == StorageKind::Normal) | 102 | 39 | Req.~Request(); | 103 | 949 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvED2Ev Line | Count | Source | 100 | 949 | ~RequestKey() { | 101 | 949 | if (Kind == StorageKind::Normal) | 102 | 39 | Req.~Request(); | 103 | 949 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvED2Ev Line | Count | Source | 100 | 949 | ~RequestKey() { | 101 | 949 | if (Kind == StorageKind::Normal) | 102 | 39 | Req.~Request(); | 103 | 949 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvED2Ev Line | Count | Source | 100 | 949 | ~RequestKey() { | 101 | 949 | if (Kind == StorageKind::Normal) | 102 | 39 | Req.~Request(); | 103 | 949 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvED2Ev Line | Count | Source | 100 | 1.78k | ~RequestKey() { | 101 | 1.78k | if (Kind == StorageKind::Normal) | 102 | 357 | Req.~Request(); | 103 | 1.78k | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvED2Ev Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvED2Ev ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvED2Ev Line | Count | Source | 100 | 7.24k | ~RequestKey() { | 101 | 7.24k | if (Kind == StorageKind::Normal) | 102 | 2.20k | Req.~Request(); | 103 | 7.24k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvED2Ev Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvED2Ev Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvED2Ev Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvED2Ev Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvED2Ev Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvED2Ev Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IDEInspectionSecondPassRequestEvED2Ev Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvED2Ev Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvED2Ev ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvED2Ev Line | Count | Source | 100 | 21.4k | ~RequestKey() { | 101 | 21.4k | if (Kind == StorageKind::Normal) | 102 | 6.78k | Req.~Request(); | 103 | 21.4k | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvED2Ev Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvED2Ev Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvED2Ev Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvED2Ev Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvED2Ev Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvED2Ev Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30TypeEraserHasViableInitRequestEvED2Ev Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveTypeEraserTypeRequestEvED2Ev Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvED2Ev Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SpecializeAttrTargetDeclRequestEvED2Ev Line | Count | Source | 100 | 193 | ~RequestKey() { | 101 | 193 | if (Kind == StorageKind::Normal) | 102 | 48 | Req.~Request(); | 103 | 193 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36SerializeAttrGenericSignatureRequestEvED2Ev Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvED2Ev Line | Count | Source | 100 | 437 | ~RequestKey() { | 101 | 437 | if (Kind == StorageKind::Normal) | 102 | 24 | Req.~Request(); | 103 | 437 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvED2Ev Line | Count | Source | 100 | 309 | ~RequestKey() { | 101 | 309 | if (Kind == StorageKind::Normal) | 102 | 30 | Req.~Request(); | 103 | 309 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29ImplementsAttrProtocolRequestEvED2Ev Line | Count | Source | 100 | 441 | ~RequestKey() { | 101 | 441 | if (Kind == StorageKind::Normal) | 102 | 51 | Req.~Request(); | 103 | 441 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38InitAccessorReferencedVariablesRequestEvED2Ev Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33SemanticAvailableRangeAttrRequestEvED2Ev Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30SemanticUnavailableAttrRequestEvED2Ev Line | Count | Source | 100 | 3.11k | ~RequestKey() { | 101 | 3.11k | if (Kind == StorageKind::Normal) | 102 | 667 | Req.~Request(); | 103 | 3.11k | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ExpandMemberAttributeMacrosEvED2Ev Line | Count | Source | 100 | 96.4k | ~RequestKey() { | 101 | 96.4k | if (Kind == StorageKind::Normal) | 102 | 24.4k | Req.~Request(); | 103 | 96.4k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvED2Ev Line | Count | Source | 100 | 30.4k | ~RequestKey() { | 101 | 30.4k | if (Kind == StorageKind::Normal) | 102 | 7.83k | Req.~Request(); | 103 | 30.4k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvED2Ev Line | Count | Source | 100 | 26.3k | ~RequestKey() { | 101 | 26.3k | if (Kind == StorageKind::Normal) | 102 | 4.66k | Req.~Request(); | 103 | 26.3k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ThrownTypeRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsAccessorTransparentRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericParamListRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericSignatureRequestEvED2Ev Line | Count | Source | 100 | 20.0k | ~RequestKey() { | 101 | 20.0k | if (Kind == StorageKind::Normal) | 102 | 84 | Req.~Request(); | 103 | 20.0k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ScopedImportLookupRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExtendedNominalRequestEvED2Ev Line | Count | Source | 100 | 180 | ~RequestKey() { | 101 | 180 | if (Kind == StorageKind::Normal) | 102 | 18 | Req.~Request(); | 103 | 180 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvED2Ev Line | Count | Source | 100 | 290 | ~RequestKey() { | 101 | 290 | if (Kind == StorageKind::Normal) | 102 | 18 | Req.~Request(); | 103 | 290 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26PatternBindingEntryRequestEvED2Ev Line | Count | Source | 100 | 247 | ~RequestKey() { | 101 | 247 | if (Kind == StorageKind::Normal) | 102 | 90 | Req.~Request(); | 103 | 247 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30RequiresOpaqueAccessorsRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25SynthesizeAccessorRequestEvED2Ev Line | Count | Source | 100 | 151 | ~RequestKey() { | 101 | 151 | if (Kind == StorageKind::Normal) | 102 | 42 | Req.~Request(); | 103 | 151 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvED2Ev Line | Count | Source | 100 | 163 | ~RequestKey() { | 101 | 163 | if (Kind == StorageKind::Normal) | 102 | 21 | Req.~Request(); | 103 | 163 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsGetterMutatingRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsSetterMutatingRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26OpaqueReadOwnershipRequestEvED2Ev Line | Count | Source | 100 | 221 | ~RequestKey() { | 101 | 221 | if (Kind == StorageKind::Normal) | 102 | 42 | Req.~Request(); | 103 | 221 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvED2Ev Line | Count | Source | 100 | 324 | ~RequestKey() { | 101 | 324 | if (Kind == StorageKind::Normal) | 102 | 6 | Req.~Request(); | 103 | 324 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13IsObjCRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsFinalRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17IsMoveOnlyRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16IsDynamicRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30DynamicallyReplacedDeclRequestEvED2Ev Line | Count | Source | 100 | 16.3k | ~RequestKey() { | 101 | 16.3k | if (Kind == StorageKind::Normal) | 102 | 4.21k | Req.~Request(); | 103 | 16.3k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InterfaceTypeRequestEvED2Ev Line | Count | Source | 100 | 64.4k | ~RequestKey() { | 101 | 64.4k | if (Kind == StorageKind::Normal) | 102 | 607 | Req.~Request(); | 103 | 64.4k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18AccessLevelRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23StoredPropertiesRequestEvED2Ev Line | Count | Source | 100 | 21.6k | ~RequestKey() { | 101 | 21.6k | if (Kind == StorageKind::Normal) | 102 | 273 | Req.~Request(); | 103 | 21.6k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29InitAccessorPropertiesRequestEvED2Ev Line | Count | Source | 100 | 517 | ~RequestKey() { | 101 | 517 | if (Kind == StorageKind::Normal) | 102 | 57 | Req.~Request(); | 103 | 517 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31MemberwiseInitPropertiesRequestEvED2Ev Line | Count | Source | 100 | 523 | ~RequestKey() { | 101 | 523 | if (Kind == StorageKind::Normal) | 102 | 66 | Req.~Request(); | 103 | 523 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvED2Ev Line | Count | Source | 100 | 123 | ~RequestKey() { | 101 | 123 | if (Kind == StorageKind::Normal) | 102 | 12 | Req.~Request(); | 103 | 123 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30PropertyWrapperTypeInfoRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsActorRequestEvED2Ev Line | Count | Source | 100 | 14.9k | ~RequestKey() { | 101 | 14.9k | if (Kind == StorageKind::Normal) | 102 | 1.20k | Req.~Request(); | 103 | 14.9k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDistributedActorRequestEvED2Ev Line | Count | Source | 100 | 11.1k | ~RequestKey() { | 101 | 11.1k | if (Kind == StorageKind::Normal) | 102 | 1.35k | Req.~Request(); | 103 | 11.1k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21UnderlyingTypeRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21StructuralTypeRequestEvED2Ev Line | Count | Source | 100 | 4.09k | ~RequestKey() { | 101 | 4.09k | if (Kind == StorageKind::Normal) | 102 | 1.22k | Req.~Request(); | 103 | 4.09k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28DefaultDefinitionTypeRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18EnumRawTypeRequestEvED2Ev Line | Count | Source | 100 | 2.43k | ~RequestKey() { | 101 | 2.43k | if (Kind == StorageKind::Normal) | 102 | 779 | Req.~Request(); | 103 | 2.43k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24HasMemberwiseInitRequestEvED2Ev Line | Count | Source | 100 | 696 | ~RequestKey() { | 101 | 696 | if (Kind == StorageKind::Normal) | 102 | 105 | Req.~Request(); | 103 | 696 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SynthesizeMemberwiseInitRequestEvED2Ev Line | Count | Source | 100 | 424 | ~RequestKey() { | 101 | 424 | if (Kind == StorageKind::Normal) | 102 | 54 | Req.~Request(); | 103 | 424 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvED2Ev Line | Count | Source | 100 | 625 | ~RequestKey() { | 101 | 625 | if (Kind == StorageKind::Normal) | 102 | 78 | Req.~Request(); | 103 | 625 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21HasDefaultInitRequestEvED2Ev Line | Count | Source | 100 | 944 | ~RequestKey() { | 101 | 944 | if (Kind == StorageKind::Normal) | 102 | 120 | Req.~Request(); | 103 | 944 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28SynthesizeDefaultInitRequestEvED2Ev Line | Count | Source | 100 | 243 | ~RequestKey() { | 101 | 243 | if (Kind == StorageKind::Normal) | 102 | 18 | Req.~Request(); | 103 | 243 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GlobalActorInstanceRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20GetDestructorRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21IsDefaultActorRequestEvED2Ev Line | Count | Source | 100 | 115 | ~RequestKey() { | 101 | 115 | if (Kind == StorageKind::Normal) | 102 | 3 | Req.~Request(); | 103 | 115 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39HasMissingDesignatedInitializersRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37InheritsSuperclassInitializersRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ClassAncestryFlagsRequestEvED2Ev Line | Count | Source | 100 | 307 | ~RequestKey() { | 101 | 307 | if (Kind == StorageKind::Normal) | 102 | 15 | Req.~Request(); | 103 | 307 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvED2Ev Line | Count | Source | 100 | 81 | ~RequestKey() { | 101 | 81 | if (Kind == StorageKind::Normal) | 102 | 6 | Req.~Request(); | 103 | 81 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25InheritedProtocolsRequestEvED2Ev Line | Count | Source | 100 | 327 | ~RequestKey() { | 101 | 327 | if (Kind == StorageKind::Normal) | 102 | 6 | Req.~Request(); | 103 | 327 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolRequirementsRequestEvED2Ev Line | Count | Source | 100 | 93 | ~RequestKey() { | 101 | 93 | if (Kind == StorageKind::Normal) | 102 | 6 | Req.~Request(); | 103 | 93 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassTypeRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProtocolRequiresClassRequestEvED2Ev Line | Count | Source | 100 | 89 | ~RequestKey() { | 101 | 89 | if (Kind == StorageKind::Normal) | 102 | 6 | Req.~Request(); | 103 | 89 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ExistentialConformsToSelfRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29PrimaryAssociatedTypesRequestEvED2Ev Line | Count | Source | 100 | 146 | ~RequestKey() { | 101 | 146 | if (Kind == StorageKind::Normal) | 102 | 6 | Req.~Request(); | 103 | 146 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29StructuralRequirementsRequestEvED2Ev Line | Count | Source | 100 | 393 | ~RequestKey() { | 101 | 393 | if (Kind == StorageKind::Normal) | 102 | 21 | Req.~Request(); | 103 | 393 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeAliasRequirementsRequestEvED2Ev Line | Count | Source | 100 | 379 | ~RequestKey() { | 101 | 379 | if (Kind == StorageKind::Normal) | 102 | 21 | Req.~Request(); | 103 | 379 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolDependenciesRequestEvED2Ev Line | Count | Source | 100 | 7.32k | ~RequestKey() { | 101 | 7.32k | if (Kind == StorageKind::Normal) | 102 | 630 | Req.~Request(); | 103 | 7.32k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27RequirementSignatureRequestEvED2Ev Line | Count | Source | 100 | 801 | ~RequestKey() { | 101 | 801 | if (Kind == StorageKind::Normal) | 102 | 6 | Req.~Request(); | 103 | 801 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvED2Ev Line | Count | Source | 100 | 225 | ~RequestKey() { | 101 | 225 | if (Kind == StorageKind::Normal) | 102 | 12 | Req.~Request(); | 103 | 225 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvED2Ev Line | Count | Source | 100 | 5.87k | ~RequestKey() { | 101 | 5.87k | if (Kind == StorageKind::Normal) | 102 | 0 | Req.~Request(); | 103 | 5.87k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22StorageImplInfoRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24SetterAccessLevelRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasInitAccessorRequestEvED2Ev Line | Count | Source | 100 | 8.80k | ~RequestKey() { | 101 | 8.80k | if (Kind == StorageKind::Normal) | 102 | 1.65k | Req.~Request(); | 103 | 8.80k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvED2Ev Line | Count | Source | 100 | 58.0k | ~RequestKey() { | 101 | 58.0k | if (Kind == StorageKind::Normal) | 102 | 18.3k | Req.~Request(); | 103 | 58.0k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20NamingPatternRequestEvED2Ev Line | Count | Source | 100 | 203 | ~RequestKey() { | 101 | 203 | if (Kind == StorageKind::Normal) | 102 | 57 | Req.~Request(); | 103 | 203 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParamSpecifierRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvED2Ev Line | Count | Source | 100 | 57.3k | ~RequestKey() { | 101 | 57.3k | if (Kind == StorageKind::Normal) | 102 | 13.0k | Req.~Request(); | 103 | 57.3k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvED2Ev Line | Count | Source | 100 | 363 | ~RequestKey() { | 101 | 363 | if (Kind == StorageKind::Normal) | 102 | 63 | Req.~Request(); | 103 | 363 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvED2Ev Line | Count | Source | 100 | 363 | ~RequestKey() { | 101 | 363 | if (Kind == StorageKind::Normal) | 102 | 63 | Req.~Request(); | 103 | 363 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvED2Ev Line | Count | Source | 100 | 671 | ~RequestKey() { | 101 | 671 | if (Kind == StorageKind::Normal) | 102 | 120 | Req.~Request(); | 103 | 671 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvED2Ev Line | Count | Source | 100 | 681 | ~RequestKey() { | 101 | 681 | if (Kind == StorageKind::Normal) | 102 | 120 | Req.~Request(); | 103 | 681 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperMutabilityRequestEvED2Ev Line | Count | Source | 100 | 878 | ~RequestKey() { | 101 | 878 | if (Kind == StorageKind::Normal) | 102 | 153 | Req.~Request(); | 103 | 878 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DefaultArgumentInitContextRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentExprRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentTypeRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResultBuilderTypeRequestEvED2Ev Line | Count | Source | 100 | 1.45k | ~RequestKey() { | 101 | 1.45k | if (Kind == StorageKind::Normal) | 102 | 294 | Req.~Request(); | 103 | 1.45k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AttachedResultBuilderRequestEvED2Ev Line | Count | Source | 100 | 2.55k | ~RequestKey() { | 101 | 2.55k | if (Kind == StorageKind::Normal) | 102 | 584 | Req.~Request(); | 103 | 2.55k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ResultTypeRequestEvED2Ev Line | Count | Source | 100 | 1.90k | ~RequestKey() { | 101 | 1.90k | if (Kind == StorageKind::Normal) | 102 | 75 | Req.~Request(); | 103 | 1.90k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ParseAbstractFunctionBodyRequestEvED2Ev Line | Count | Source | 100 | 1.13k | ~RequestKey() { | 101 | 1.13k | if (Kind == StorageKind::Normal) | 102 | 135 | Req.~Request(); | 103 | 1.13k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckFunctionBodyRequestEvED2Ev Line | Count | Source | 100 | 979 | ~RequestKey() { | 101 | 979 | if (Kind == StorageKind::Normal) | 102 | 221 | Req.~Request(); | 103 | 979 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsFunctionBodySkippedRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26NeedsNewVTableEntryRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvED2Ev Line | Count | Source | 100 | 19.7k | ~RequestKey() { | 101 | 19.7k | if (Kind == StorageKind::Normal) | 102 | 6.44k | Req.~Request(); | 103 | 19.7k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15IsStaticRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19SimpleDidSetRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SelfAccessKindRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20EnumRawValuesRequestEvED2Ev Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvED2Ev Line | Count | Source | 100 | 4.48k | ~RequestKey() { | 101 | 4.48k | if (Kind == StorageKind::Normal) | 102 | 1.25k | Req.~Request(); | 103 | 4.48k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvED2Ev Line | Count | Source | 100 | 234 | ~RequestKey() { | 101 | 234 | if (Kind == StorageKind::Normal) | 102 | 72 | Req.~Request(); | 103 | 234 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvED2Ev Line | Count | Source | 100 | 1.19k | ~RequestKey() { | 101 | 1.19k | if (Kind == StorageKind::Normal) | 102 | 282 | Req.~Request(); | 103 | 1.19k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ActorIsolationRequestEvED2Ev Line | Count | Source | 100 | 23.3k | ~RequestKey() { | 101 | 23.3k | if (Kind == StorageKind::Normal) | 102 | 4.52k | Req.~Request(); | 103 | 23.3k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvED2Ev Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvED2Ev DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26FragileFunctionKindRequestEvED2Ev Line | Count | Source | 100 | 3.39k | ~RequestKey() { | 101 | 3.39k | if (Kind == StorageKind::Normal) | 102 | 662 | Req.~Request(); | 103 | 3.39k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvED2Ev Line | Count | Source | 100 | 2.46k | ~RequestKey() { | 101 | 2.46k | if (Kind == StorageKind::Normal) | 102 | 138 | Req.~Request(); | 103 | 2.46k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ABIMembersRequestEvED2Ev Line | Count | Source | 100 | 1.09k | ~RequestKey() { | 101 | 1.09k | if (Kind == StorageKind::Normal) | 102 | 144 | Req.~Request(); | 103 | 1.09k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17AllMembersRequestEvED2Ev Line | Count | Source | 100 | 581 | ~RequestKey() { | 101 | 581 | if (Kind == StorageKind::Normal) | 102 | 42 | Req.~Request(); | 103 | 581 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvED2Ev Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvED2Ev Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvED2Ev Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvED2Ev Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvED2Ev Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetDistributedThunkRequestEvED2Ev Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvED2Ev Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36GetDistributedActorIDPropertyRequestEvED2Ev Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27SemanticBriefCommentRequestEvED2Ev Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36PolymorphicEffectRequirementsRequestEvED2Ev Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PolymorphicEffectKindRequestEvED2Ev Line | Count | Source | 100 | 1.35k | ~RequestKey() { | 101 | 1.35k | if (Kind == StorageKind::Normal) | 102 | 222 | Req.~Request(); | 103 | 1.35k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ConformanceHasEffectRequestEvED2Ev Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CallerSideDefaultArgExprRequestEvED2Ev Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvED2Ev Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvED2Ev GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvED2Ev Line | Count | Source | 100 | 980 | ~RequestKey() { | 101 | 980 | if (Kind == StorageKind::Normal) | 102 | 108 | Req.~Request(); | 103 | 980 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22IsNonUserModuleRequestEvED2Ev Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleImplicitImportsRequestEvED2Ev Line | Count | Source | 100 | 1.02k | ~RequestKey() { | 101 | 1.02k | if (Kind == StorageKind::Normal) | 102 | 42 | Req.~Request(); | 103 | 1.02k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PrimarySourceFilesRequestEvED2Ev Line | Count | Source | 100 | 924 | ~RequestKey() { | 101 | 924 | if (Kind == StorageKind::Normal) | 102 | 36 | Req.~Request(); | 103 | 924 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvED2Ev Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvED2Ev Line | Count | Source | 100 | 10.5k | ~RequestKey() { | 101 | 10.5k | if (Kind == StorageKind::Normal) | 102 | 267 | Req.~Request(); | 103 | 10.5k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetImplicitSendableRequestEvED2Ev Line | Count | Source | 100 | 1.06k | ~RequestKey() { | 101 | 1.06k | if (Kind == StorageKind::Normal) | 102 | 147 | Req.~Request(); | 103 | 1.06k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvED2Ev Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvED2Ev Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29HasImportsMatchingFlagRequestEvED2Ev Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16SPIGroupsRequestEvED2Ev Line | Count | Source | 100 | 20.8k | ~RequestKey() { | 101 | 20.8k | if (Kind == StorageKind::Normal) | 102 | 3.97k | Req.~Request(); | 103 | 20.8k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ModuleLibraryLevelRequestEvED2Ev Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvED2Ev Line | Count | Source | 100 | 1.19k | ~RequestKey() { | 101 | 1.19k | if (Kind == StorageKind::Normal) | 102 | 51 | Req.~Request(); | 103 | 1.19k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExportedSourceFileRequestEvED2Ev Line | Count | Source | 100 | 1.02k | ~RequestKey() { | 101 | 1.02k | if (Kind == StorageKind::Normal) | 102 | 42 | Req.~Request(); | 103 | 1.02k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22GetSourceFileAsyncNodeEvED2Ev Line | Count | Source | 100 | 300 | ~RequestKey() { | 101 | 300 | if (Kind == StorageKind::Normal) | 102 | 12 | Req.~Request(); | 103 | 300 | } |
NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvED2Ev Line | Count | Source | 100 | 803 | ~RequestKey() { | 101 | 803 | if (Kind == StorageKind::Normal) | 102 | 102 | Req.~Request(); | 103 | 803 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvED2Ev NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvED2Ev Line | Count | Source | 100 | 10.9k | ~RequestKey() { | 101 | 10.9k | if (Kind == StorageKind::Normal) | 102 | 2.86k | Req.~Request(); | 103 | 10.9k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvED2Ev Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsCallAsFunctionNominalRequestEvED2Ev NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvED2Ev Line | Count | Source | 100 | 1.13k | ~RequestKey() { | 101 | 1.13k | if (Kind == StorageKind::Normal) | 102 | 231 | Req.~Request(); | 103 | 1.13k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvED2Ev OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LookupInfixOperatorRequestEvED2Ev Line | Count | Source | 100 | 461 | ~RequestKey() { | 101 | 461 | if (Kind == StorageKind::Normal) | 102 | 42 | Req.~Request(); | 103 | 461 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27LookupPrefixOperatorRequestEvED2Ev Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPostfixOperatorRequestEvED2Ev OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPrecedenceGroupRequestEvED2Ev Line | Count | Source | 100 | 387 | ~RequestKey() { | 101 | 387 | if (Kind == StorageKind::Normal) | 102 | 15 | Req.~Request(); | 103 | 387 | } |
Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ExprPatternMatchRequestEvED2Ev ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ConditionalRequirementsRequestEvED2Ev Line | Count | Source | 100 | 2.87k | ~RequestKey() { | 101 | 2.87k | if (Kind == StorageKind::Normal) | 102 | 336 | Req.~Request(); | 103 | 2.87k | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18TypeWitnessRequestEvED2Ev Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AssociatedConformanceRequestEvED2Ev Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ValueWitnessRequestEvED2Ev ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37LookupAllConformancesInContextRequestEvED2Ev Line | Count | Source | 100 | 1.80k | ~RequestKey() { | 101 | 1.80k | if (Kind == StorageKind::Normal) | 102 | 189 | Req.~Request(); | 103 | 1.80k | } |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17RawCommentRequestEvED2Ev Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvED2Ev Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IsSingleValueStmtRequestEvED2Ev Line | Count | Source | 100 | 847 | ~RequestKey() { | 101 | 847 | if (Kind == StorageKind::Normal) | 102 | 147 | Req.~Request(); | 103 | 847 | } |
Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18BreakTargetRequestEvED2Ev Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ContinueTargetRequestEvED2Ev TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RequirementRequestEvED2Ev Line | Count | Source | 100 | 787 | ~RequestKey() { | 101 | 787 | if (Kind == StorageKind::Normal) | 102 | 141 | Req.~Request(); | 103 | 787 | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvED2Ev Line | Count | Source | 100 | 653 | ~RequestKey() { | 101 | 653 | if (Kind == StorageKind::Normal) | 102 | 111 | Req.~Request(); | 103 | 653 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvED2Ev |
104 | | |
105 | 429k | bool isStorageEqual(const Request &req) const { |
106 | 429k | if (Kind != StorageKind::Normal) |
107 | 291k | return false; |
108 | 138k | return Req == req; |
109 | 429k | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Frontend.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IDEInspectionFileRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ConstExtract.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ConstantValueInfoRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: GenClass.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE14isStorageEqualERKS3_ Unexecuted instantiation: GenDistributed.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE14isStorageEqualERKS3_ Unexecuted instantiation: GenDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE14isStorageEqualERKS3_ Unexecuted instantiation: GenEnum.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE14isStorageEqualERKS3_ Unexecuted instantiation: GenHeap.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE14isStorageEqualERKS3_ Unexecuted instantiation: GenMeta.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE14isStorageEqualERKS3_ Unexecuted instantiation: IRGen.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22SymbolSourceMapRequestEvE14isStorageEqualERKS3_ IRGen.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_12IRGenRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 3 | bool isStorageEqual(const Request &req) const { | 106 | 3 | if (Kind != StorageKind::Normal) | 107 | 2 | return false; | 108 | 1 | return Req == req; | 109 | 3 | } |
SILGen.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 15 | bool isStorageEqual(const Request &req) const { | 106 | 15 | if (Kind != StorageKind::Normal) | 107 | 10 | return false; | 108 | 5 | return Req == req; | 109 | 15 | } |
Common.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TangentStoredPropertyRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 24 | bool isStorageEqual(const Request &req) const { | 106 | 24 | if (Kind != StorageKind::Normal) | 107 | 18 | return false; | 108 | 6 | return Req == req; | 109 | 24 | } |
Unexecuted instantiation: SILOptimizerRequests.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18ASTLoweringRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: IDERequests.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26ResolveProtocolNameRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProvideDefaultImplForRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29CollectOverriddenDeclsRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24TypeRelationCheckRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Serialization.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: BuilderTransform.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PreCheckResultBuilderRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: CSApply.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvE14isStorageEqualERKS3_ CSRanking.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32CompareDeclSpecializationRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 83 | bool isStorageEqual(const Request &req) const { | 106 | 83 | if (Kind != StorageKind::Normal) | 107 | 61 | return false; | 108 | 22 | return Req == req; | 109 | 83 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29EnumElementExprPatternRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: CSSimplify.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvE14isStorageEqualERKS3_ CSStep.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDeclRefinementOfRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 281 | bool isStorageEqual(const Request &req) const { | 106 | 281 | if (Kind != StorageKind::Normal) | 107 | 207 | return false; | 108 | 74 | return Req == req; | 109 | 281 | } |
CodeSynthesis.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 159 | bool isStorageEqual(const Request &req) const { | 106 | 159 | if (Kind != StorageKind::Normal) | 107 | 121 | return false; | 108 | 38 | return Req == req; | 109 | 159 | } |
CodeSynthesis.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 38 | bool isStorageEqual(const Request &req) const { | 106 | 38 | if (Kind != StorageKind::Normal) | 107 | 36 | return false; | 108 | 2 | return Req == req; | 109 | 38 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ConstraintSystem.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ClosureHasExplicitResultRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsDeclApplicableRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: PreCheckExpr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35DistributedModuleIsAvailableRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CheckDistributedFunctionRequestEvE14isStorageEqualERKS3_ TypeCheckDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ValidatePrecedenceGroupRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 27 | bool isStorageEqual(const Request &req) const { | 106 | 27 | if (Kind != StorageKind::Normal) | 107 | 27 | return false; | 108 | 0 | return Req == req; | 109 | 27 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvE14isStorageEqualERKS3_ TypeCheckDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29SynthesizeMainFunctionRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 48 | bool isStorageEqual(const Request &req) const { | 106 | 48 | if (Kind != StorageKind::Normal) | 107 | 42 | return false; | 108 | 6 | return Req == req; | 109 | 48 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34TypeCheckObjCImplementationRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvE14isStorageEqualERKS3_ TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CheckRedeclarationRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 533 | bool isStorageEqual(const Request &req) const { | 106 | 533 | if (Kind != StorageKind::Normal) | 107 | 285 | return false; | 108 | 248 | return Req == req; | 109 | 533 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvE14isStorageEqualERKS3_ TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ApplyAccessNoteRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 3.98k | bool isStorageEqual(const Request &req) const { | 106 | 3.98k | if (Kind != StorageKind::Normal) | 107 | 2.41k | return false; | 108 | 1.57k | return Req == req; | 109 | 3.98k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvE14isStorageEqualERKS3_ TypeCheckExpr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18DefaultTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 117 | bool isStorageEqual(const Request &req) const { | 106 | 117 | if (Kind != StorageKind::Normal) | 107 | 111 | return false; | 108 | 6 | return Req == req; | 109 | 117 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ExternalMacroDefinitionRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25CompilerPluginLoadRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvE14isStorageEqualERKS3_ TypeCheckPattern.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18PatternTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 327 | bool isStorageEqual(const Request &req) const { | 106 | 327 | if (Kind != StorageKind::Normal) | 107 | 253 | return false; | 108 | 74 | return Req == req; | 109 | 327 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21CustomAttrTypeRequestEvE14isStorageEqualERKS3_ TypeCheckStmt.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PreCheckReturnStmtRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 181 | bool isStorageEqual(const Request &req) const { | 106 | 181 | if (Kind != StorageKind::Normal) | 107 | 165 | return false; | 108 | 16 | return Req == req; | 109 | 181 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperLValuenessRequestEvE14isStorageEqualERKS3_ TypeCheckStorage.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20ExpandAccessorMacrosEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 204 | bool isStorageEqual(const Request &req) const { | 106 | 204 | if (Kind != StorageKind::Normal) | 107 | 189 | return false; | 108 | 15 | return Req == req; | 109 | 204 | } |
TypeChecker.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26TypeCheckSourceFileRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 27 | bool isStorageEqual(const Request &req) const { | 106 | 27 | if (Kind != StorageKind::Normal) | 107 | 18 | return false; | 108 | 9 | return Req == req; | 109 | 27 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeChecker.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeChecker.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvE14isStorageEqualERKS3_ Unexecuted instantiation: TypeChecker.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvE14isStorageEqualERKS3_ TypeChecker.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31InferredGenericSignatureRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 221 | bool isStorageEqual(const Request &req) const { | 106 | 221 | if (Kind != StorageKind::Normal) | 107 | 201 | return false; | 108 | 20 | return Req == req; | 109 | 221 | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ClangImporter.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE14isStorageEqualERKS3_ Unexecuted instantiation: ClangImporter.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ImportDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE14isStorageEqualERKS3_ Unexecuted instantiation: Parser.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IDEInspectionSecondPassRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ParseRequests.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvE14isStorageEqualERKS3_ Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30TypeEraserHasViableInitRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ResolveTypeEraserTypeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvE14isStorageEqualERKS3_ Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SpecializeAttrTargetDeclRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 46 | bool isStorageEqual(const Request &req) const { | 106 | 46 | if (Kind != StorageKind::Normal) | 107 | 45 | return false; | 108 | 1 | return Req == req; | 109 | 46 | } |
Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36SerializeAttrGenericSignatureRequestEvE14isStorageEqualERKS3_ Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 81 | bool isStorageEqual(const Request &req) const { | 106 | 81 | if (Kind != StorageKind::Normal) | 107 | 57 | return false; | 108 | 24 | return Req == req; | 109 | 81 | } |
Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 72 | bool isStorageEqual(const Request &req) const { | 106 | 72 | if (Kind != StorageKind::Normal) | 107 | 54 | return false; | 108 | 18 | return Req == req; | 109 | 72 | } |
Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29ImplementsAttrProtocolRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 6 | bool isStorageEqual(const Request &req) const { | 106 | 6 | if (Kind != StorageKind::Normal) | 107 | 4 | return false; | 108 | 2 | return Req == req; | 109 | 6 | } |
Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38InitAccessorReferencedVariablesRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Availability.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33SemanticAvailableRangeAttrRequestEvE14isStorageEqualERKS3_ Availability.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30SemanticUnavailableAttrRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.74k | bool isStorageEqual(const Request &req) const { | 106 | 1.74k | if (Kind != StorageKind::Normal) | 107 | 1.07k | return false; | 108 | 668 | return Req == req; | 109 | 1.74k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ExpandMemberAttributeMacrosEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 37.9k | bool isStorageEqual(const Request &req) const { | 106 | 37.9k | if (Kind != StorageKind::Normal) | 107 | 23.1k | return false; | 108 | 14.7k | return Req == req; | 109 | 37.9k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExpandPeerMacroRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 10.2k | bool isStorageEqual(const Request &req) const { | 106 | 10.2k | if (Kind != StorageKind::Normal) | 107 | 6.82k | return false; | 108 | 3.42k | return Req == req; | 109 | 10.2k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionDeclRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ResolveMacroRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27GlobalActorAttributeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 19.7k | bool isStorageEqual(const Request &req) const { | 106 | 19.7k | if (Kind != StorageKind::Normal) | 107 | 13.0k | return false; | 108 | 6.64k | return Req == req; | 109 | 19.7k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ThrownTypeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsAccessorTransparentRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericParamListRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23GenericSignatureRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 31.2k | bool isStorageEqual(const Request &req) const { | 106 | 31.2k | if (Kind != StorageKind::Normal) | 107 | 28.7k | return false; | 108 | 2.47k | return Req == req; | 109 | 31.2k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ScopedImportLookupRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InheritedTypeRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ExtendedNominalRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 15 | bool isStorageEqual(const Request &req) const { | 106 | 15 | if (Kind != StorageKind::Normal) | 107 | 10 | return false; | 108 | 5 | return Req == req; | 109 | 15 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ExtendedTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 184 | bool isStorageEqual(const Request &req) const { | 106 | 184 | if (Kind != StorageKind::Normal) | 107 | 129 | return false; | 108 | 55 | return Req == req; | 109 | 184 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26PatternBindingEntryRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30RequiresOpaqueAccessorsRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25SynthesizeAccessorRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsABICompatibleOverrideRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 81 | bool isStorageEqual(const Request &req) const { | 106 | 81 | if (Kind != StorageKind::Normal) | 107 | 60 | return false; | 108 | 21 | return Req == req; | 109 | 81 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsGetterMutatingRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23IsSetterMutatingRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26OpaqueReadOwnershipRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 109 | bool isStorageEqual(const Request &req) const { | 106 | 109 | if (Kind != StorageKind::Normal) | 107 | 77 | return false; | 108 | 32 | return Req == req; | 109 | 109 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22OverriddenDeclsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 267 | bool isStorageEqual(const Request &req) const { | 106 | 267 | if (Kind != StorageKind::Normal) | 107 | 257 | return false; | 108 | 10 | return Req == req; | 109 | 267 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23OpaqueResultTypeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_13IsObjCRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsFinalRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17IsMoveOnlyRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16IsDynamicRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30DynamicallyReplacedDeclRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 5.76k | bool isStorageEqual(const Request &req) const { | 106 | 5.76k | if (Kind != StorageKind::Normal) | 107 | 3.90k | return false; | 108 | 1.85k | return Req == req; | 109 | 5.76k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20InterfaceTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 133k | bool isStorageEqual(const Request &req) const { | 106 | 133k | if (Kind != StorageKind::Normal) | 107 | 92.0k | return false; | 108 | 41.6k | return Req == req; | 109 | 133k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18AccessLevelRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23StoredPropertiesRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 32.1k | bool isStorageEqual(const Request &req) const { | 106 | 32.1k | if (Kind != StorageKind::Normal) | 107 | 20.4k | return false; | 108 | 11.6k | return Req == req; | 109 | 32.1k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29InitAccessorPropertiesRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 106 | bool isStorageEqual(const Request &req) const { | 106 | 106 | if (Kind != StorageKind::Normal) | 107 | 82 | return false; | 108 | 24 | return Req == req; | 109 | 106 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31MemberwiseInitPropertiesRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 85 | bool isStorageEqual(const Request &req) const { | 106 | 85 | if (Kind != StorageKind::Normal) | 107 | 73 | return false; | 108 | 12 | return Req == req; | 109 | 85 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 48 | bool isStorageEqual(const Request &req) const { | 106 | 48 | if (Kind != StorageKind::Normal) | 107 | 35 | return false; | 108 | 13 | return Req == req; | 109 | 48 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30PropertyWrapperTypeInfoRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_14IsActorRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 16.9k | bool isStorageEqual(const Request &req) const { | 106 | 16.9k | if (Kind != StorageKind::Normal) | 107 | 11.4k | return false; | 108 | 5.44k | return Req == req; | 109 | 16.9k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25IsDistributedActorRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 10.9k | bool isStorageEqual(const Request &req) const { | 106 | 10.9k | if (Kind != StorageKind::Normal) | 107 | 7.28k | return false; | 108 | 3.70k | return Req == req; | 109 | 10.9k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21UnderlyingTypeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21StructuralTypeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28DefaultDefinitionTypeRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18EnumRawTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 33 | bool isStorageEqual(const Request &req) const { | 106 | 33 | if (Kind != StorageKind::Normal) | 107 | 23 | return false; | 108 | 10 | return Req == req; | 109 | 33 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24HasMemberwiseInitRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 129 | bool isStorageEqual(const Request &req) const { | 106 | 129 | if (Kind != StorageKind::Normal) | 107 | 100 | return false; | 108 | 29 | return Req == req; | 109 | 129 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31SynthesizeMemberwiseInitRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 72 | bool isStorageEqual(const Request &req) const { | 106 | 72 | if (Kind != StorageKind::Normal) | 107 | 56 | return false; | 108 | 16 | return Req == req; | 109 | 72 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 201 | bool isStorageEqual(const Request &req) const { | 106 | 201 | if (Kind != StorageKind::Normal) | 107 | 145 | return false; | 108 | 56 | return Req == req; | 109 | 201 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21HasDefaultInitRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 52 | bool isStorageEqual(const Request &req) const { | 106 | 52 | if (Kind != StorageKind::Normal) | 107 | 51 | return false; | 108 | 1 | return Req == req; | 109 | 52 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28SynthesizeDefaultInitRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 9 | bool isStorageEqual(const Request &req) const { | 106 | 9 | if (Kind != StorageKind::Normal) | 107 | 9 | return false; | 108 | 0 | return Req == req; | 109 | 9 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GlobalActorInstanceRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20GetDestructorRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21IsDefaultActorRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 63 | bool isStorageEqual(const Request &req) const { | 106 | 63 | if (Kind != StorageKind::Normal) | 107 | 42 | return false; | 108 | 21 | return Req == req; | 109 | 63 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_39HasMissingDesignatedInitializersRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37InheritsSuperclassInitializersRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ClassAncestryFlagsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 114 | bool isStorageEqual(const Request &req) const { | 106 | 114 | if (Kind != StorageKind::Normal) | 107 | 78 | return false; | 108 | 36 | return Req == req; | 109 | 114 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26CustomRefCountingOperationEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26HasCircularRawValueRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 3 | bool isStorageEqual(const Request &req) const { | 106 | 3 | if (Kind != StorageKind::Normal) | 107 | 3 | return false; | 108 | 0 | return Req == req; | 109 | 3 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25InheritedProtocolsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 372 | bool isStorageEqual(const Request &req) const { | 106 | 372 | if (Kind != StorageKind::Normal) | 107 | 344 | return false; | 108 | 28 | return Req == req; | 109 | 372 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolRequirementsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 21 | bool isStorageEqual(const Request &req) const { | 106 | 21 | if (Kind != StorageKind::Normal) | 107 | 18 | return false; | 108 | 3 | return Req == req; | 109 | 21 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassTypeRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ProtocolRequiresClassRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 15 | bool isStorageEqual(const Request &req) const { | 106 | 15 | if (Kind != StorageKind::Normal) | 107 | 14 | return false; | 108 | 1 | return Req == req; | 109 | 15 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ExistentialConformsToSelfRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29PrimaryAssociatedTypesRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29StructuralRequirementsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 24 | bool isStorageEqual(const Request &req) const { | 106 | 24 | if (Kind != StorageKind::Normal) | 107 | 17 | return false; | 108 | 7 | return Req == req; | 109 | 24 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeAliasRequirementsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 3 | bool isStorageEqual(const Request &req) const { | 106 | 3 | if (Kind != StorageKind::Normal) | 107 | 3 | return false; | 108 | 0 | return Req == req; | 109 | 3 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ProtocolDependenciesRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 8.56k | bool isStorageEqual(const Request &req) const { | 106 | 8.56k | if (Kind != StorageKind::Normal) | 107 | 5.69k | return false; | 108 | 2.86k | return Req == req; | 109 | 8.56k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27RequirementSignatureRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.08k | bool isStorageEqual(const Request &req) const { | 106 | 1.08k | if (Kind != StorageKind::Normal) | 107 | 1.06k | return false; | 108 | 14 | return Req == req; | 109 | 1.08k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36HasCircularInheritedProtocolsRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17HasStorageRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 10.6k | bool isStorageEqual(const Request &req) const { | 106 | 10.6k | if (Kind != StorageKind::Normal) | 107 | 6.05k | return false; | 108 | 4.62k | return Req == req; | 109 | 10.6k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22StorageImplInfoRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24SetterAccessLevelRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22HasInitAccessorRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 5.63k | bool isStorageEqual(const Request &req) const { | 106 | 5.63k | if (Kind != StorageKind::Normal) | 107 | 3.49k | return false; | 108 | 2.13k | return Req == req; | 109 | 5.63k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27DefaultInitializerIsolationEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 684 | bool isStorageEqual(const Request &req) const { | 106 | 684 | if (Kind != StorageKind::Normal) | 107 | 441 | return false; | 108 | 243 | return Req == req; | 109 | 684 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20NamingPatternRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 39 | bool isStorageEqual(const Request &req) const { | 106 | 39 | if (Kind != StorageKind::Normal) | 107 | 33 | return false; | 108 | 6 | return Req == req; | 109 | 39 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ParamSpecifierRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AttachedPropertyWrappersRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 28.0k | bool isStorageEqual(const Request &req) const { | 106 | 28.0k | if (Kind != StorageKind::Normal) | 107 | 17.1k | return false; | 108 | 10.9k | return Req == req; | 109 | 28.0k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24CustomAttrNominalRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 61 | bool isStorageEqual(const Request &req) const { | 106 | 61 | if (Kind != StorageKind::Normal) | 107 | 54 | return false; | 108 | 7 | return Req == req; | 109 | 61 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 55 | bool isStorageEqual(const Request &req) const { | 106 | 55 | if (Kind != StorageKind::Normal) | 107 | 54 | return false; | 108 | 1 | return Req == req; | 109 | 55 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 157 | bool isStorageEqual(const Request &req) const { | 106 | 157 | if (Kind != StorageKind::Normal) | 107 | 131 | return false; | 108 | 26 | return Req == req; | 109 | 157 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 184 | bool isStorageEqual(const Request &req) const { | 106 | 184 | if (Kind != StorageKind::Normal) | 107 | 141 | return false; | 108 | 43 | return Req == req; | 109 | 184 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32PropertyWrapperMutabilityRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 283 | bool isStorageEqual(const Request &req) const { | 106 | 283 | if (Kind != StorageKind::Normal) | 107 | 215 | return false; | 108 | 68 | return Req == req; | 109 | 283 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LazyStoragePropertyRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_33DefaultArgumentInitContextRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentExprRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26DefaultArgumentTypeRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResultBuilderTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 551 | bool isStorageEqual(const Request &req) const { | 106 | 551 | if (Kind != StorageKind::Normal) | 107 | 422 | return false; | 108 | 129 | return Req == req; | 109 | 551 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AttachedResultBuilderRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 802 | bool isStorageEqual(const Request &req) const { | 106 | 802 | if (Kind != StorageKind::Normal) | 107 | 634 | return false; | 108 | 168 | return Req == req; | 109 | 802 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ResultTypeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 2.13k | bool isStorageEqual(const Request &req) const { | 106 | 2.13k | if (Kind != StorageKind::Normal) | 107 | 1.99k | return false; | 108 | 148 | return Req == req; | 109 | 2.13k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RenamedDeclRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_32ParseAbstractFunctionBodyRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.50k | bool isStorageEqual(const Request &req) const { | 106 | 1.50k | if (Kind != StorageKind::Normal) | 107 | 1.19k | return false; | 108 | 309 | return Req == req; | 109 | 1.50k | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28TypeCheckFunctionBodyRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 292 | bool isStorageEqual(const Request &req) const { | 106 | 292 | if (Kind != StorageKind::Normal) | 107 | 172 | return false; | 108 | 120 | return Req == req; | 109 | 292 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28IsFunctionBodySkippedRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26NeedsNewVTableEntryRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23FunctionOperatorRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 84 | bool isStorageEqual(const Request &req) const { | 106 | 84 | if (Kind != StorageKind::Normal) | 107 | 56 | return false; | 108 | 28 | return Req == req; | 109 | 84 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15IsStaticRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19SimpleDidSetRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SelfAccessKindRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20EnumRawValuesRequestEvE14isStorageEqualERKS3_ Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_15InitKindRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 628 | bool isStorageEqual(const Request &req) const { | 106 | 628 | if (Kind != StorageKind::Normal) | 107 | 409 | return false; | 108 | 219 | return Req == req; | 109 | 628 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19BodyInitKindRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 15 | bool isStorageEqual(const Request &req) const { | 106 | 15 | if (Kind != StorageKind::Normal) | 107 | 14 | return false; | 108 | 1 | return Req == req; | 109 | 15 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30OperatorPrecedenceGroupRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 39 | bool isStorageEqual(const Request &req) const { | 106 | 39 | if (Kind != StorageKind::Normal) | 107 | 26 | return false; | 108 | 13 | return Req == req; | 109 | 39 | } |
Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ActorIsolationRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 16.0k | bool isStorageEqual(const Request &req) const { | 106 | 16.0k | if (Kind != StorageKind::Normal) | 107 | 9.83k | return false; | 108 | 6.23k | return Req == req; | 109 | 16.0k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31ExpandMacroExpansionExprRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24ResolveMacroConformancesEvE14isStorageEqualERKS3_ Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22MacroDefinitionRequestEvE14isStorageEqualERKS3_ DeclContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26FragileFunctionKindRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.93k | bool isStorageEqual(const Request &req) const { | 106 | 1.93k | if (Kind != StorageKind::Normal) | 107 | 1.27k | return false; | 108 | 654 | return Req == req; | 109 | 1.93k | } |
DeclContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ParseMembersRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 2.50k | bool isStorageEqual(const Request &req) const { | 106 | 2.50k | if (Kind != StorageKind::Normal) | 107 | 1.66k | return false; | 108 | 841 | return Req == req; | 109 | 2.50k | } |
DeclContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17ABIMembersRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 213 | bool isStorageEqual(const Request &req) const { | 106 | 213 | if (Kind != StorageKind::Normal) | 107 | 177 | return false; | 108 | 36 | return Req == req; | 109 | 213 | } |
DeclContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17AllMembersRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 42 | bool isStorageEqual(const Request &req) const { | 106 | 42 | if (Kind != StorageKind::Normal) | 107 | 35 | return false; | 108 | 7 | return Req == req; | 109 | 42 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetDistributedThunkRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36GetDistributedActorIDPropertyRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: DocComment.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27SemanticBriefCommentRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Effects.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_36PolymorphicEffectRequirementsRequestEvE14isStorageEqualERKS3_ Effects.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28PolymorphicEffectKindRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 677 | bool isStorageEqual(const Request &req) const { | 106 | 677 | if (Kind != StorageKind::Normal) | 107 | 505 | return false; | 108 | 172 | return Req == req; | 109 | 677 | } |
Unexecuted instantiation: Effects.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27ConformanceHasEffectRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Expr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31CallerSideDefaultArgExprRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Expr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LocalDiscriminatorsRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Expr.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ClosureEffectsRequestEvE14isStorageEqualERKS3_ GenericSignature.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 347 | bool isStorageEqual(const Request &req) const { | 106 | 347 | if (Kind != StorageKind::Normal) | 107 | 256 | return false; | 108 | 91 | return Req == req; | 109 | 347 | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22IsNonUserModuleRequestEvE14isStorageEqualERKS3_ Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28ModuleImplicitImportsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 9 | bool isStorageEqual(const Request &req) const { | 106 | 9 | if (Kind != StorageKind::Normal) | 107 | 6 | return false; | 108 | 3 | return Req == req; | 109 | 9 | } |
Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25PrimarySourceFilesRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 72 | bool isStorageEqual(const Request &req) const { | 106 | 72 | if (Kind != StorageKind::Normal) | 107 | 48 | return false; | 108 | 24 | return Req == req; | 109 | 72 | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26MangleLocalTypeDeclRequestEvE14isStorageEqualERKS3_ Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 14.7k | bool isStorageEqual(const Request &req) const { | 106 | 14.7k | if (Kind != StorageKind::Normal) | 107 | 9.23k | return false; | 108 | 5.47k | return Req == req; | 109 | 14.7k | } |
Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26GetImplicitSendableRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 255 | bool isStorageEqual(const Request &req) const { | 106 | 255 | if (Kind != StorageKind::Normal) | 107 | 199 | return false; | 108 | 56 | return Req == req; | 109 | 255 | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22ParseSourceFileRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_29HasImportsMatchingFlagRequestEvE14isStorageEqualERKS3_ Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_16SPIGroupsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 14.6k | bool isStorageEqual(const Request &req) const { | 106 | 14.6k | if (Kind != StorageKind::Normal) | 107 | 8.85k | return false; | 108 | 5.81k | return Req == req; | 109 | 14.6k | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ModuleLibraryLevelRequestEvE14isStorageEqualERKS3_ Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ParseTopLevelDeclsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 231 | bool isStorageEqual(const Request &req) const { | 106 | 231 | if (Kind != StorageKind::Normal) | 107 | 157 | return false; | 108 | 74 | return Req == req; | 109 | 231 | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_25ExportedSourceFileRequestEvE14isStorageEqualERKS3_ Module.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_22GetSourceFileAsyncNodeEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 12 | bool isStorageEqual(const Request &req) const { | 106 | 12 | if (Kind != StorageKind::Normal) | 107 | 8 | return false; | 108 | 4 | return Req == req; | 109 | 12 | } |
NameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 206 | bool isStorageEqual(const Request &req) const { | 106 | 206 | if (Kind != StorageKind::Normal) | 107 | 157 | return false; | 108 | 49 | return Req == req; | 109 | 206 | } |
Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ExpandExtensionMacrosEvE14isStorageEqualERKS3_ NameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 3.07k | bool isStorageEqual(const Request &req) const { | 106 | 3.07k | if (Kind != StorageKind::Normal) | 107 | 2.24k | return false; | 108 | 827 | return Req == req; | 109 | 3.07k | } |
Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21SuperclassDeclRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30IsCallAsFunctionNominalRequestEvE14isStorageEqualERKS3_ NameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 435 | bool isStorageEqual(const Request &req) const { | 106 | 435 | if (Kind != StorageKind::Normal) | 107 | 334 | return false; | 108 | 101 | return Req == req; | 109 | 435 | } |
Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_34HasDynamicCallableAttributeRequestEvE14isStorageEqualERKS3_ OperatorNameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_26LookupInfixOperatorRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 66 | bool isStorageEqual(const Request &req) const { | 106 | 66 | if (Kind != StorageKind::Normal) | 107 | 48 | return false; | 108 | 18 | return Req == req; | 109 | 66 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_27LookupPrefixOperatorRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPostfixOperatorRequestEvE14isStorageEqualERKS3_ OperatorNameLookup.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28LookupPrecedenceGroupRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 33 | bool isStorageEqual(const Request &req) const { | 106 | 33 | if (Kind != StorageKind::Normal) | 107 | 22 | return false; | 108 | 11 | return Req == req; | 109 | 33 | } |
Unexecuted instantiation: Pattern.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_23ExprPatternMatchRequestEvE14isStorageEqualERKS3_ ProtocolConformance.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_30ConditionalRequirementsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 2.43k | bool isStorageEqual(const Request &req) const { | 106 | 2.43k | if (Kind != StorageKind::Normal) | 107 | 1.64k | return false; | 108 | 785 | return Req == req; | 109 | 2.43k | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18TypeWitnessRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ProtocolConformance.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_28AssociatedConformanceRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: ProtocolConformance.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_19ValueWitnessRequestEvE14isStorageEqualERKS3_ ProtocolConformance.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_37LookupAllConformancesInContextRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 1.26k | bool isStorageEqual(const Request &req) const { | 106 | 1.26k | if (Kind != StorageKind::Normal) | 107 | 909 | return false; | 108 | 356 | return Req == req; | 109 | 1.26k | } |
Unexecuted instantiation: RawComment.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_17RawCommentRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: RequirementMachineRequests.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_31AbstractGenericSignatureRequestEvE14isStorageEqualERKS3_ Stmt.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_24IsSingleValueStmtRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 138 | bool isStorageEqual(const Request &req) const { | 106 | 138 | if (Kind != StorageKind::Normal) | 107 | 126 | return false; | 108 | 12 | return Req == req; | 109 | 138 | } |
Unexecuted instantiation: Stmt.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18BreakTargetRequestEvE14isStorageEqualERKS3_ Unexecuted instantiation: Stmt.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_21ContinueTargetRequestEvE14isStorageEqualERKS3_ TypeCheckRequests.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_18RequirementRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 54 | bool isStorageEqual(const Request &req) const { | 106 | 54 | if (Kind != StorageKind::Normal) | 107 | 41 | return false; | 108 | 13 | return Req == req; | 109 | 54 | } |
TypeRefinementContext.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvE14isStorageEqualERKS3_ Line | Count | Source | 105 | 150 | bool isStorageEqual(const Request &req) const { | 106 | 150 | if (Kind != StorageKind::Normal) | 107 | 128 | return false; | 108 | 22 | return Req == req; | 109 | 150 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZNK5swift9evaluator12_GLOBAL__N_110RequestKeyINS_20USRGenerationRequestEvE14isStorageEqualERKS3_ |
110 | 830k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { |
111 | 830k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { |
112 | 44.1k | return lhs.Req == rhs.Req; |
113 | 786k | } else { |
114 | 786k | return lhs.Kind == rhs.Kind; |
115 | 786k | } |
116 | 830k | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18OptimizedIRRequestEvEES6_ Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22SymbolSourceMapRequestEvEES6_ Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20USRGenerationRequestEvEES6_ Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18RenamedDeclRequestEvEES6_ Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24IDEInspectionFileRequestEvEES6_ Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEES6_ Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24ConstantValueInfoRequestEvEES6_ Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEES6_ Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEES6_ Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEES6_ Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEES6_ Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEES6_ Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEES6_ Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22SymbolSourceMapRequestEvEES6_ IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_12IRGenRequestEvEES6_ Line | Count | Source | 110 | 70 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 70 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 70 | } else { | 114 | 70 | return lhs.Kind == rhs.Kind; | 115 | 70 | } | 116 | 70 | } |
Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17LoweredSILRequestEvEES6_ Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20PublicSymbolsRequestEvEES6_ Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18GenerateTBDRequestEvEES6_ Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_13APIGenRequestEvEES6_ SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18ASTLoweringRequestEvEES6_ Line | Count | Source | 110 | 350 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 350 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 350 | } else { | 114 | 350 | return lhs.Kind == rhs.Kind; | 115 | 350 | } | 116 | 350 | } |
Unexecuted instantiation: SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21ParseSILModuleRequestEvEES6_ Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28TangentStoredPropertyRequestEvEES6_ Line | Count | Source | 110 | 2 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 2 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 2 | } else { | 114 | 2 | return lhs.Kind == rhs.Kind; | 115 | 2 | } | 116 | 2 | } |
Unexecuted instantiation: PassManager.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25ExecuteSILPipelineRequestEvEES6_ Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18ASTLoweringRequestEvEES6_ Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28ProvideDefaultImplForRequestEvEES6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEES6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26ResolveProtocolNameRequestEvEES6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28ProvideDefaultImplForRequestEvEES6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_29CollectOverriddenDeclsRequestEvEES6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23IsDeclApplicableRequestEvEES6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24TypeRelationCheckRequestEvEES6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_15InitKindRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23OpaqueResultTypeRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26LazyStoragePropertyRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27DefaultInitializerIsolationEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23FunctionOperatorRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30OperatorPrecedenceGroupRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22MacroDefinitionRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17HasStorageRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27DirectOperatorLookupRequestEvEES6_ Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvEES6_ Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26MangleLocalTypeDeclRequestEvEES6_ Unexecuted instantiation: ParseSIL.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEES6_ Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28PreCheckResultBuilderRequestEvEES6_ Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31ExpandMacroExpansionExprRequestEvEES6_ CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_32CompareDeclSpecializationRequestEvEES6_ Line | Count | Source | 110 | 315 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 315 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 4 | return lhs.Req == rhs.Req; | 113 | 311 | } else { | 114 | 311 | return lhs.Kind == rhs.Kind; | 115 | 311 | } | 116 | 315 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_29EnumElementExprPatternRequestEvEES6_ Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_34HasDynamicCallableAttributeRequestEvEES6_ Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEES6_ CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25IsDeclRefinementOfRequestEvEES6_ Line | Count | Source | 110 | 693 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 693 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 14 | return lhs.Req == rhs.Req; | 113 | 679 | } else { | 114 | 679 | return lhs.Kind == rhs.Kind; | 115 | 679 | } | 116 | 693 | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18CxxRecordSemanticsEvEES6_ CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvEES6_ Line | Count | Source | 110 | 909 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 909 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2 | return lhs.Req == rhs.Req; | 113 | 907 | } else { | 114 | 907 | return lhs.Kind == rhs.Kind; | 115 | 907 | } | 116 | 909 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvEES6_ Line | Count | Source | 110 | 444 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 444 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2 | return lhs.Req == rhs.Req; | 113 | 442 | } else { | 114 | 442 | return lhs.Kind == rhs.Kind; | 115 | 442 | } | 116 | 444 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21ClosureEffectsRequestEvEES6_ Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31ClosureHasExplicitResultRequestEvEES6_ DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28TangentStoredPropertyRequestEvEES6_ Line | Count | Source | 110 | 88 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 88 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 88 | } else { | 114 | 88 | return lhs.Kind == rhs.Kind; | 115 | 88 | } | 116 | 88 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23IsDeclApplicableRequestEvEES6_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEES6_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvEES6_ Unexecuted instantiation: MiscDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEES6_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25PreCheckReturnStmtRequestEvEES6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_29SynthesizeMainFunctionRequestEvEES6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEES6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21CustomAttrTypeRequestEvEES6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24ResolveMacroConformancesEvEES6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31InferredGenericSignatureRequestEvEES6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27GlobalActorAttributeRequestEvEES6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEES6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEES6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEES6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27GlobalActorAttributeRequestEvEES6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21CustomAttrTypeRequestEvEES6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22HasIsolatedSelfRequestEvEES6_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_35DistributedModuleIsAvailableRequestEvEES6_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31CheckDistributedFunctionRequestEvEES6_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30ValidatePrecedenceGroupRequestEvEES6_ Line | Count | Source | 110 | 425 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 425 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 425 | } else { | 114 | 425 | return lhs.Kind == rhs.Kind; | 115 | 425 | } | 116 | 425 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEES6_ TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_29SynthesizeMainFunctionRequestEvEES6_ Line | Count | Source | 110 | 420 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 420 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 420 | } else { | 114 | 420 | return lhs.Kind == rhs.Kind; | 115 | 420 | } | 116 | 420 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEES6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26HasCircularRawValueRequestEvEES6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22OverriddenDeclsRequestEvEES6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30IsABICompatibleOverrideRequestEvEES6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28ResolveImplicitMemberRequestEvEES6_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_34TypeCheckObjCImplementationRequestEvEES6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20InheritedTypeRequestEvEES6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30ExternalMacroDefinitionRequestEvEES6_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25CheckRedeclarationRequestEvEES6_ Line | Count | Source | 110 | 1.99k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.99k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 113 | return lhs.Req == rhs.Req; | 113 | 1.87k | } else { | 114 | 1.87k | return lhs.Kind == rhs.Kind; | 115 | 1.87k | } | 116 | 1.99k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21ExpandExtensionMacrosEvEES6_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22ApplyAccessNoteRequestEvEES6_ Line | Count | Source | 110 | 9.74k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 9.74k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 525 | return lhs.Req == rhs.Req; | 113 | 9.22k | } else { | 114 | 9.22k | return lhs.Kind == rhs.Kind; | 115 | 9.22k | } | 116 | 9.74k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ResolveMacroRequestEvEES6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28ResolveImplicitMemberRequestEvEES6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27DirectOperatorLookupRequestEvEES6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvEES6_ TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18DefaultTypeRequestEvEES6_ Line | Count | Source | 110 | 109 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 109 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 109 | } else { | 114 | 109 | return lhs.Kind == rhs.Kind; | 115 | 109 | } | 116 | 109 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31InferredGenericSignatureRequestEvEES6_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30ExternalMacroDefinitionRequestEvEES6_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25CompilerPluginLoadRequestEvEES6_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEES6_ Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEES6_ TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18PatternTypeRequestEvEES6_ Line | Count | Source | 110 | 878 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 878 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 7 | return lhs.Req == rhs.Req; | 113 | 871 | } else { | 114 | 871 | return lhs.Kind == rhs.Kind; | 115 | 871 | } | 116 | 878 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEES6_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31AttachedPropertyWrappersRequestEvEES6_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21CustomAttrTypeRequestEvEES6_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEES6_ TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20InheritedTypeRequestEvEES6_ Line | Count | Source | 110 | 472 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 472 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 12 | return lhs.Req == rhs.Req; | 113 | 460 | } else { | 114 | 460 | return lhs.Kind == rhs.Kind; | 115 | 460 | } | 116 | 472 | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEES6_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21CustomAttrTypeRequestEvEES6_ TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25PreCheckReturnStmtRequestEvEES6_ Line | Count | Source | 110 | 955 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 955 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 16 | return lhs.Req == rhs.Req; | 113 | 939 | } else { | 114 | 939 | return lhs.Kind == rhs.Kind; | 115 | 939 | } | 116 | 955 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26LocalDiscriminatorsRequestEvEES6_ Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27PreCheckFunctionBodyRequestEvEES6_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEES6_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22ExpandPeerMacroRequestEvEES6_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_32PropertyWrapperLValuenessRequestEvEES6_ TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20ExpandAccessorMacrosEvEES6_ Line | Count | Source | 110 | 866 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 866 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 15 | return lhs.Req == rhs.Req; | 113 | 851 | } else { | 114 | 851 | return lhs.Kind == rhs.Kind; | 115 | 851 | } | 116 | 866 | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEES6_ Unexecuted instantiation: TypeCheckType.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18ResolveTypeRequestEvEES6_ TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26TypeCheckSourceFileRequestEvEES6_ Line | Count | Source | 110 | 420 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 420 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 420 | } else { | 114 | 420 | return lhs.Kind == rhs.Kind; | 115 | 420 | } | 116 | 420 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvEES6_ Line | Count | Source | 110 | 910 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 910 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 910 | } else { | 114 | 910 | return lhs.Kind == rhs.Kind; | 115 | 910 | } | 116 | 910 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvEES6_ Line | Count | Source | 110 | 910 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 910 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 910 | } else { | 114 | 910 | return lhs.Kind == rhs.Kind; | 115 | 910 | } | 116 | 910 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvEES6_ Line | Count | Source | 110 | 910 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 910 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 910 | } else { | 114 | 910 | return lhs.Kind == rhs.Kind; | 115 | 910 | } | 116 | 910 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvEES6_ Line | Count | Source | 110 | 910 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 910 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 910 | } else { | 114 | 910 | return lhs.Kind == rhs.Kind; | 115 | 910 | } | 116 | 910 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31InferredGenericSignatureRequestEvEES6_ Line | Count | Source | 110 | 1.79k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.79k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 26 | return lhs.Req == rhs.Req; | 113 | 1.76k | } else { | 114 | 1.76k | return lhs.Kind == rhs.Kind; | 115 | 1.76k | } | 116 | 1.79k | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28TypeCheckASTNodeAtLocRequestEvEES6_ Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEES6_ Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23ClangRecordMemberLookupEvEES6_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEES6_ ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17HasStorageRequestEvEES6_ Line | Count | Source | 110 | 10.5k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 10.5k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 783 | return lhs.Req == rhs.Req; | 113 | 9.80k | } else { | 114 | 9.80k | return lhs.Kind == rhs.Kind; | 115 | 9.80k | } | 116 | 10.5k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvEES6_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24ClangDirectLookupRequestEvEES6_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23ClangRecordMemberLookupEvEES6_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26ClangCategoryLookupRequestEvEES6_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_15InitKindRequestEvEES6_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17HasStorageRequestEvEES6_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEES6_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEES6_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18CxxRecordSemanticsEvEES6_ Unexecuted instantiation: ImportName.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18IsSafeUseOfCxxDeclEvEES6_ Unexecuted instantiation: ImportType.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20CxxRecordAsSwiftTypeEvEES6_ Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ParseMembersRequestEvEES6_ Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30IDEInspectionSecondPassRequestEvEES6_ Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26LocalDiscriminatorsRequestEvEES6_ Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22ParseSourceFileRequestEvEES6_ Unexecuted instantiation: AccessRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31TypeDeclsFromWhereClauseRequestEvEES6_ ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEES6_ Line | Count | Source | 110 | 32.4k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 32.4k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2.44k | return lhs.Req == rhs.Req; | 113 | 29.9k | } else { | 114 | 29.9k | return lhs.Kind == rhs.Kind; | 115 | 29.9k | } | 116 | 32.4k | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEES6_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEES6_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEES6_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEES6_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEES6_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22HasIsolatedSelfRequestEvEES6_ Unexecuted instantiation: ASTPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24ClangDirectLookupRequestEvEES6_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24ResolveMacroConformancesEvEES6_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30TypeEraserHasViableInitRequestEvEES6_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28ResolveTypeEraserTypeRequestEvEES6_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvEES6_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31SpecializeAttrTargetDeclRequestEvEES6_ Line | Count | Source | 110 | 180 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 180 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1 | return lhs.Req == rhs.Req; | 113 | 179 | } else { | 114 | 179 | return lhs.Kind == rhs.Kind; | 115 | 179 | } | 116 | 180 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_36SerializeAttrGenericSignatureRequestEvEES6_ Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvEES6_ Line | Count | Source | 110 | 371 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 371 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 371 | } else { | 114 | 371 | return lhs.Kind == rhs.Kind; | 115 | 371 | } | 116 | 371 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvEES6_ Line | Count | Source | 110 | 258 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 258 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 258 | } else { | 114 | 258 | return lhs.Kind == rhs.Kind; | 115 | 258 | } | 116 | 258 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_29ImplementsAttrProtocolRequestEvEES6_ Line | Count | Source | 110 | 422 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 422 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 422 | } else { | 114 | 422 | return lhs.Kind == rhs.Kind; | 115 | 422 | } | 116 | 422 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_38InitAccessorReferencedVariablesRequestEvEES6_ Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_33SemanticAvailableRangeAttrRequestEvEES6_ Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30SemanticUnavailableAttrRequestEvEES6_ Line | Count | Source | 110 | 4.19k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 4.19k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 261 | return lhs.Req == rhs.Req; | 113 | 3.93k | } else { | 114 | 3.93k | return lhs.Kind == rhs.Kind; | 115 | 3.93k | } | 116 | 4.19k | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ParseMembersRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27ExpandMemberAttributeMacrosEvEES6_ Line | Count | Source | 110 | 154k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 154k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 10.4k | return lhs.Req == rhs.Req; | 113 | 143k | } else { | 114 | 143k | return lhs.Kind == rhs.Kind; | 115 | 143k | } | 116 | 154k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22ExpandPeerMacroRequestEvEES6_ Line | Count | Source | 110 | 46.7k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 46.7k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 3.13k | return lhs.Req == rhs.Req; | 113 | 43.6k | } else { | 114 | 43.6k | return lhs.Kind == rhs.Kind; | 115 | 43.6k | } | 116 | 46.7k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ResolveMacroRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27GlobalActorAttributeRequestEvEES6_ Line | Count | Source | 110 | 27.3k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 27.3k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1.94k | return lhs.Req == rhs.Req; | 113 | 25.3k | } else { | 114 | 25.3k | return lhs.Kind == rhs.Kind; | 115 | 25.3k | } | 116 | 27.3k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17ThrownTypeRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28IsAccessorTransparentRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23GenericParamListRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23GenericSignatureRequestEvEES6_ Line | Count | Source | 110 | 13.0k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 13.0k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 6 | return lhs.Req == rhs.Req; | 113 | 13.0k | } else { | 114 | 13.0k | return lhs.Kind == rhs.Kind; | 115 | 13.0k | } | 116 | 13.0k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25ScopedImportLookupRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20InheritedTypeRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22ExtendedNominalRequestEvEES6_ Line | Count | Source | 110 | 164 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 164 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 164 | } else { | 114 | 164 | return lhs.Kind == rhs.Kind; | 115 | 164 | } | 116 | 164 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEES6_ Line | Count | Source | 110 | 181 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 181 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 181 | } else { | 114 | 181 | return lhs.Kind == rhs.Kind; | 115 | 181 | } | 116 | 181 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26PatternBindingEntryRequestEvEES6_ Line | Count | Source | 110 | 289 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 289 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 15 | return lhs.Req == rhs.Req; | 113 | 274 | } else { | 114 | 274 | return lhs.Kind == rhs.Kind; | 115 | 274 | } | 116 | 289 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30RequiresOpaqueAccessorsRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25SynthesizeAccessorRequestEvEES6_ Line | Count | Source | 110 | 157 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 157 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 3 | return lhs.Req == rhs.Req; | 113 | 154 | } else { | 114 | 154 | return lhs.Kind == rhs.Kind; | 115 | 154 | } | 116 | 157 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30IsABICompatibleOverrideRequestEvEES6_ Line | Count | Source | 110 | 112 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 112 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 112 | } else { | 114 | 112 | return lhs.Kind == rhs.Kind; | 115 | 112 | } | 116 | 112 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23IsGetterMutatingRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23IsSetterMutatingRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26OpaqueReadOwnershipRequestEvEES6_ Line | Count | Source | 110 | 166 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 166 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1 | return lhs.Req == rhs.Req; | 113 | 165 | } else { | 114 | 165 | return lhs.Kind == rhs.Kind; | 115 | 165 | } | 116 | 166 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26LocalDiscriminatorsRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22OverriddenDeclsRequestEvEES6_ Line | Count | Source | 110 | 219 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 219 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 219 | } else { | 114 | 219 | return lhs.Kind == rhs.Kind; | 115 | 219 | } | 116 | 219 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23OpaqueResultTypeRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_13IsObjCRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_14IsFinalRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17IsMoveOnlyRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_16IsDynamicRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30DynamicallyReplacedDeclRequestEvEES6_ Line | Count | Source | 110 | 24.3k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 24.3k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1.57k | return lhs.Req == rhs.Req; | 113 | 22.7k | } else { | 114 | 22.7k | return lhs.Kind == rhs.Kind; | 115 | 22.7k | } | 116 | 24.3k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20InterfaceTypeRequestEvEES6_ Line | Count | Source | 110 | 113k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 113k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 180 | return lhs.Req == rhs.Req; | 113 | 112k | } else { | 114 | 112k | return lhs.Kind == rhs.Kind; | 115 | 112k | } | 116 | 113k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18AccessLevelRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23StoredPropertiesRequestEvEES6_ Line | Count | Source | 110 | 4.42k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 4.42k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 35 | return lhs.Req == rhs.Req; | 113 | 4.38k | } else { | 114 | 4.38k | return lhs.Kind == rhs.Kind; | 115 | 4.38k | } | 116 | 4.42k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_29InitAccessorPropertiesRequestEvEES6_ Line | Count | Source | 110 | 462 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 462 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2 | return lhs.Req == rhs.Req; | 113 | 460 | } else { | 114 | 460 | return lhs.Kind == rhs.Kind; | 115 | 460 | } | 116 | 462 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31MemberwiseInitPropertiesRequestEvEES6_ Line | Count | Source | 110 | 474 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 474 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1 | return lhs.Req == rhs.Req; | 113 | 473 | } else { | 114 | 473 | return lhs.Kind == rhs.Kind; | 115 | 473 | } | 116 | 474 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvEES6_ Line | Count | Source | 110 | 91 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 91 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 91 | } else { | 114 | 91 | return lhs.Kind == rhs.Kind; | 115 | 91 | } | 116 | 91 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30PropertyWrapperTypeInfoRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_14IsActorRequestEvEES6_ Line | Count | Source | 110 | 8.21k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 8.21k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 342 | return lhs.Req == rhs.Req; | 113 | 7.87k | } else { | 114 | 7.87k | return lhs.Kind == rhs.Kind; | 115 | 7.87k | } | 116 | 8.21k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25IsDistributedActorRequestEvEES6_ Line | Count | Source | 110 | 10.1k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 10.1k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 406 | return lhs.Req == rhs.Req; | 113 | 9.73k | } else { | 114 | 9.73k | return lhs.Kind == rhs.Kind; | 115 | 9.73k | } | 116 | 10.1k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21UnderlyingTypeRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21StructuralTypeRequestEvEES6_ Line | Count | Source | 110 | 5.22k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 5.22k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 266 | return lhs.Req == rhs.Req; | 113 | 4.96k | } else { | 114 | 4.96k | return lhs.Kind == rhs.Kind; | 115 | 4.96k | } | 116 | 5.22k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28DefaultDefinitionTypeRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18EnumRawTypeRequestEvEES6_ Line | Count | Source | 110 | 3.17k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 3.17k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 235 | return lhs.Req == rhs.Req; | 113 | 2.94k | } else { | 114 | 2.94k | return lhs.Kind == rhs.Kind; | 115 | 2.94k | } | 116 | 3.17k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24HasMemberwiseInitRequestEvEES6_ Line | Count | Source | 110 | 622 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 622 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2 | return lhs.Req == rhs.Req; | 113 | 620 | } else { | 114 | 620 | return lhs.Kind == rhs.Kind; | 115 | 620 | } | 116 | 622 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31SynthesizeMemberwiseInitRequestEvEES6_ Line | Count | Source | 110 | 372 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 372 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 372 | } else { | 114 | 372 | return lhs.Kind == rhs.Kind; | 115 | 372 | } | 116 | 372 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvEES6_ Line | Count | Source | 110 | 487 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 487 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 487 | } else { | 114 | 487 | return lhs.Kind == rhs.Kind; | 115 | 487 | } | 116 | 487 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21HasDefaultInitRequestEvEES6_ Line | Count | Source | 110 | 905 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 905 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2 | return lhs.Req == rhs.Req; | 113 | 903 | } else { | 114 | 903 | return lhs.Kind == rhs.Kind; | 115 | 903 | } | 116 | 905 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28SynthesizeDefaultInitRequestEvEES6_ Line | Count | Source | 110 | 231 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 231 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 231 | } else { | 114 | 231 | return lhs.Kind == rhs.Kind; | 115 | 231 | } | 116 | 231 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26GlobalActorInstanceRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20GetDestructorRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21IsDefaultActorRequestEvEES6_ Line | Count | Source | 110 | 70 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 70 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 70 | } else { | 114 | 70 | return lhs.Kind == rhs.Kind; | 115 | 70 | } | 116 | 70 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_39HasMissingDesignatedInitializersRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_37InheritsSuperclassInitializersRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25ClassAncestryFlagsRequestEvEES6_ Line | Count | Source | 110 | 224 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 224 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 224 | } else { | 114 | 224 | return lhs.Kind == rhs.Kind; | 115 | 224 | } | 116 | 224 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26HasCircularRawValueRequestEvEES6_ Line | Count | Source | 110 | 77 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 77 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 77 | } else { | 114 | 77 | return lhs.Kind == rhs.Kind; | 115 | 77 | } | 116 | 77 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25InheritedProtocolsRequestEvEES6_ Line | Count | Source | 110 | 172 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 172 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 172 | } else { | 114 | 172 | return lhs.Kind == rhs.Kind; | 115 | 172 | } | 116 | 172 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27ProtocolRequirementsRequestEvEES6_ Line | Count | Source | 110 | 80 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 80 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 80 | } else { | 114 | 80 | return lhs.Kind == rhs.Kind; | 115 | 80 | } | 116 | 80 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21SuperclassTypeRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21SuperclassDeclRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28ProtocolRequiresClassRequestEvEES6_ Line | Count | Source | 110 | 80 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 80 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 80 | } else { | 114 | 80 | return lhs.Kind == rhs.Kind; | 115 | 80 | } | 116 | 80 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_32ExistentialConformsToSelfRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_29PrimaryAssociatedTypesRequestEvEES6_ Line | Count | Source | 110 | 140 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 140 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 140 | } else { | 114 | 140 | return lhs.Kind == rhs.Kind; | 115 | 140 | } | 116 | 140 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_29StructuralRequirementsRequestEvEES6_ Line | Count | Source | 110 | 363 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 363 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 363 | } else { | 114 | 363 | return lhs.Kind == rhs.Kind; | 115 | 363 | } | 116 | 363 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28TypeAliasRequirementsRequestEvEES6_ Line | Count | Source | 110 | 363 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 363 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 363 | } else { | 114 | 363 | return lhs.Kind == rhs.Kind; | 115 | 363 | } | 116 | 363 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27ProtocolDependenciesRequestEvEES6_ Line | Count | Source | 110 | 4.42k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 4.42k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 99 | return lhs.Req == rhs.Req; | 113 | 4.32k | } else { | 114 | 4.32k | return lhs.Kind == rhs.Kind; | 115 | 4.32k | } | 116 | 4.42k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27RequirementSignatureRequestEvEES6_ Line | Count | Source | 110 | 423 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 423 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 423 | } else { | 114 | 423 | return lhs.Kind == rhs.Kind; | 115 | 423 | } | 116 | 423 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEES6_ Line | Count | Source | 110 | 216 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 216 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 216 | } else { | 114 | 216 | return lhs.Kind == rhs.Kind; | 115 | 216 | } | 116 | 216 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17HasStorageRequestEvEES6_ Line | Count | Source | 110 | 3.91k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 3.91k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 3.91k | } else { | 114 | 3.91k | return lhs.Kind == rhs.Kind; | 115 | 3.91k | } | 116 | 3.91k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22StorageImplInfoRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24SetterAccessLevelRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22HasInitAccessorRequestEvEES6_ Line | Count | Source | 110 | 10.8k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 10.8k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 650 | return lhs.Req == rhs.Req; | 113 | 10.1k | } else { | 114 | 10.1k | return lhs.Kind == rhs.Kind; | 115 | 10.1k | } | 116 | 10.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27DefaultInitializerIsolationEvEES6_ Line | Count | Source | 110 | 90.8k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 90.8k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 7.28k | return lhs.Req == rhs.Req; | 113 | 83.5k | } else { | 114 | 83.5k | return lhs.Kind == rhs.Kind; | 115 | 83.5k | } | 116 | 90.8k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20NamingPatternRequestEvEES6_ Line | Count | Source | 110 | 219 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 219 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 6 | return lhs.Req == rhs.Req; | 113 | 213 | } else { | 114 | 213 | return lhs.Kind == rhs.Kind; | 115 | 213 | } | 116 | 219 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21ParamSpecifierRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31AttachedPropertyWrappersRequestEvEES6_ Line | Count | Source | 110 | 84.6k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 84.6k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 5.50k | return lhs.Req == rhs.Req; | 113 | 79.1k | } else { | 114 | 79.1k | return lhs.Kind == rhs.Kind; | 115 | 79.1k | } | 116 | 84.6k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvEES6_ Line | Count | Source | 110 | 371 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 371 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 7 | return lhs.Req == rhs.Req; | 113 | 364 | } else { | 114 | 364 | return lhs.Kind == rhs.Kind; | 115 | 364 | } | 116 | 371 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEES6_ Line | Count | Source | 110 | 341 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 341 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1 | return lhs.Req == rhs.Req; | 113 | 340 | } else { | 114 | 340 | return lhs.Kind == rhs.Kind; | 115 | 340 | } | 116 | 341 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEES6_ Line | Count | Source | 110 | 660 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 660 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 13 | return lhs.Req == rhs.Req; | 113 | 647 | } else { | 114 | 647 | return lhs.Kind == rhs.Kind; | 115 | 647 | } | 116 | 660 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEES6_ Line | Count | Source | 110 | 720 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 720 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 25 | return lhs.Req == rhs.Req; | 113 | 695 | } else { | 114 | 695 | return lhs.Kind == rhs.Kind; | 115 | 695 | } | 116 | 720 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_32PropertyWrapperMutabilityRequestEvEES6_ Line | Count | Source | 110 | 839 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 839 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 16 | return lhs.Req == rhs.Req; | 113 | 823 | } else { | 114 | 823 | return lhs.Kind == rhs.Kind; | 115 | 823 | } | 116 | 839 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26LazyStoragePropertyRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_33DefaultArgumentInitContextRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26DefaultArgumentExprRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26DefaultArgumentTypeRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24ResultBuilderTypeRequestEvEES6_ Line | Count | Source | 110 | 1.37k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.37k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 27 | return lhs.Req == rhs.Req; | 113 | 1.35k | } else { | 114 | 1.35k | return lhs.Kind == rhs.Kind; | 115 | 1.35k | } | 116 | 1.37k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28AttachedResultBuilderRequestEvEES6_ Line | Count | Source | 110 | 2.80k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 2.80k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 96 | return lhs.Req == rhs.Req; | 113 | 2.71k | } else { | 114 | 2.71k | return lhs.Kind == rhs.Kind; | 115 | 2.71k | } | 116 | 2.80k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17ResultTypeRequestEvEES6_ Line | Count | Source | 110 | 1.40k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.40k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2 | return lhs.Req == rhs.Req; | 113 | 1.40k | } else { | 114 | 1.40k | return lhs.Kind == rhs.Kind; | 115 | 1.40k | } | 116 | 1.40k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18RenamedDeclRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_32ParseAbstractFunctionBodyRequestEvEES6_ Line | Count | Source | 110 | 1.46k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.46k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 37 | return lhs.Req == rhs.Req; | 113 | 1.42k | } else { | 114 | 1.42k | return lhs.Kind == rhs.Kind; | 115 | 1.42k | } | 116 | 1.46k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28TypeCheckFunctionBodyRequestEvEES6_ Line | Count | Source | 110 | 1.18k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.18k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 50 | return lhs.Req == rhs.Req; | 113 | 1.13k | } else { | 114 | 1.13k | return lhs.Kind == rhs.Kind; | 115 | 1.13k | } | 116 | 1.18k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28IsFunctionBodySkippedRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26NeedsNewVTableEntryRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23FunctionOperatorRequestEvEES6_ Line | Count | Source | 110 | 31.1k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 31.1k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2.69k | return lhs.Req == rhs.Req; | 113 | 28.4k | } else { | 114 | 28.4k | return lhs.Kind == rhs.Kind; | 115 | 28.4k | } | 116 | 31.1k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_15IsStaticRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19SimpleDidSetRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21SelfAccessKindRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20EnumRawValuesRequestEvEES6_ Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_15InitKindRequestEvEES6_ Line | Count | Source | 110 | 5.58k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 5.58k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 350 | return lhs.Req == rhs.Req; | 113 | 5.23k | } else { | 114 | 5.23k | return lhs.Kind == rhs.Kind; | 115 | 5.23k | } | 116 | 5.58k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19BodyInitKindRequestEvEES6_ Line | Count | Source | 110 | 168 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 168 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 168 | } else { | 114 | 168 | return lhs.Kind == rhs.Kind; | 115 | 168 | } | 116 | 168 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30OperatorPrecedenceGroupRequestEvEES6_ Line | Count | Source | 110 | 1.16k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.16k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 7 | return lhs.Req == rhs.Req; | 113 | 1.15k | } else { | 114 | 1.15k | return lhs.Kind == rhs.Kind; | 115 | 1.15k | } | 116 | 1.16k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21ActorIsolationRequestEvEES6_ Line | Count | Source | 110 | 29.9k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 29.9k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1.64k | return lhs.Req == rhs.Req; | 113 | 28.3k | } else { | 114 | 28.3k | return lhs.Kind == rhs.Kind; | 115 | 28.3k | } | 116 | 29.9k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31ExpandMacroExpansionExprRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24ResolveMacroConformancesEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22MacroDefinitionRequestEvEES6_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28ResolveImplicitMemberRequestEvEES6_ DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26FragileFunctionKindRequestEvEES6_ Line | Count | Source | 110 | 3.66k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 3.66k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 164 | return lhs.Req == rhs.Req; | 113 | 3.49k | } else { | 114 | 3.49k | return lhs.Kind == rhs.Kind; | 115 | 3.49k | } | 116 | 3.66k | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ParseMembersRequestEvEES6_ Line | Count | Source | 110 | 844 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 844 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2 | return lhs.Req == rhs.Req; | 113 | 842 | } else { | 114 | 842 | return lhs.Kind == rhs.Kind; | 115 | 842 | } | 116 | 844 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17ABIMembersRequestEvEES6_ Line | Count | Source | 110 | 977 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 977 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2 | return lhs.Req == rhs.Req; | 113 | 975 | } else { | 114 | 975 | return lhs.Kind == rhs.Kind; | 115 | 975 | } | 116 | 977 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17AllMembersRequestEvEES6_ Line | Count | Source | 110 | 539 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 539 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 539 | } else { | 114 | 539 | return lhs.Kind == rhs.Kind; | 115 | 539 | } | 116 | 539 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvEES6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvEES6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvEES6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEES6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvEES6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26GetDistributedThunkRequestEvEES6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvEES6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_36GetDistributedActorIDPropertyRequestEvEES6_ Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27SemanticBriefCommentRequestEvEES6_ Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_36PolymorphicEffectRequirementsRequestEvEES6_ Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28PolymorphicEffectKindRequestEvEES6_ Line | Count | Source | 110 | 1.02k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.02k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 9 | return lhs.Req == rhs.Req; | 113 | 1.01k | } else { | 114 | 1.01k | return lhs.Kind == rhs.Kind; | 115 | 1.01k | } | 116 | 1.02k | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27ConformanceHasEffectRequestEvEES6_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31CallerSideDefaultArgExprRequestEvEES6_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26LocalDiscriminatorsRequestEvEES6_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21ClosureEffectsRequestEvEES6_ GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31AbstractGenericSignatureRequestEvEES6_ Line | Count | Source | 110 | 775 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 775 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 3 | return lhs.Req == rhs.Req; | 113 | 772 | } else { | 114 | 772 | return lhs.Kind == rhs.Kind; | 115 | 772 | } | 116 | 775 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22IsNonUserModuleRequestEvEES6_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28ModuleImplicitImportsRequestEvEES6_ Line | Count | Source | 110 | 980 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 980 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 980 | } else { | 114 | 980 | return lhs.Kind == rhs.Kind; | 115 | 980 | } | 116 | 980 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25PrimarySourceFilesRequestEvEES6_ Line | Count | Source | 110 | 840 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 840 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 840 | } else { | 114 | 840 | return lhs.Kind == rhs.Kind; | 115 | 840 | } | 116 | 840 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26MangleLocalTypeDeclRequestEvEES6_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21ExpandExtensionMacrosEvEES6_ Line | Count | Source | 110 | 3.44k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 3.44k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 19 | return lhs.Req == rhs.Req; | 113 | 3.42k | } else { | 114 | 3.42k | return lhs.Kind == rhs.Kind; | 115 | 3.42k | } | 116 | 3.44k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26GetImplicitSendableRequestEvEES6_ Line | Count | Source | 110 | 913 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 913 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2 | return lhs.Req == rhs.Req; | 113 | 911 | } else { | 114 | 911 | return lhs.Kind == rhs.Kind; | 115 | 911 | } | 116 | 913 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvEES6_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22ParseSourceFileRequestEvEES6_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_29HasImportsMatchingFlagRequestEvEES6_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_16SPIGroupsRequestEvEES6_ Line | Count | Source | 110 | 26.0k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 26.0k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 1.48k | return lhs.Req == rhs.Req; | 113 | 24.5k | } else { | 114 | 24.5k | return lhs.Kind == rhs.Kind; | 115 | 24.5k | } | 116 | 26.0k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25ModuleLibraryLevelRequestEvEES6_ Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25ParseTopLevelDeclsRequestEvEES6_ Line | Count | Source | 110 | 1.00k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.00k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 1.00k | } else { | 114 | 1.00k | return lhs.Kind == rhs.Kind; | 115 | 1.00k | } | 116 | 1.00k | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_25ExportedSourceFileRequestEvEES6_ Line | Count | Source | 110 | 980 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 980 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 980 | } else { | 114 | 980 | return lhs.Kind == rhs.Kind; | 115 | 980 | } | 116 | 980 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22GetSourceFileAsyncNodeEvEES6_ Line | Count | Source | 110 | 280 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 280 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 280 | } else { | 114 | 280 | return lhs.Kind == rhs.Kind; | 115 | 280 | } | 116 | 280 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_32LookupConformanceInModuleRequestEvEES6_ Unexecuted instantiation: ModuleNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21LookupInModuleRequestEvEES6_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEES6_ Line | Count | Source | 110 | 719 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 719 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 6 | return lhs.Req == rhs.Req; | 113 | 713 | } else { | 114 | 713 | return lhs.Kind == rhs.Kind; | 115 | 713 | } | 116 | 719 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21ExpandExtensionMacrosEvEES6_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEES6_ Line | Count | Source | 110 | 15.8k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 15.8k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 938 | return lhs.Req == rhs.Req; | 113 | 14.9k | } else { | 114 | 14.9k | return lhs.Kind == rhs.Kind; | 115 | 14.9k | } | 116 | 15.8k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21SuperclassDeclRequestEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30IsCallAsFunctionNominalRequestEvEES6_ NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvEES6_ Line | Count | Source | 110 | 1.05k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.05k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 22 | return lhs.Req == rhs.Req; | 113 | 1.03k | } else { | 114 | 1.03k | return lhs.Kind == rhs.Kind; | 115 | 1.03k | } | 116 | 1.05k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_34HasDynamicCallableAttributeRequestEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_32SelfBoundsFromWhereClauseRequestEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_37SelfBoundsFromGenericSignatureRequestEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19DirectLookupRequestEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24CXXNamespaceMemberLookupEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23ClangRecordMemberLookupEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22AnyObjectLookupRequestEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_22QualifiedLookupRequestEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28ModuleQualifiedLookupRequestEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_36UnderlyingTypeDeclsReferencedRequestEvEES6_ Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31InheritedDeclsReferencedRequestEvEES6_ OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_26LookupInfixOperatorRequestEvEES6_ Line | Count | Source | 110 | 422 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 422 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 2 | return lhs.Req == rhs.Req; | 113 | 420 | } else { | 114 | 420 | return lhs.Kind == rhs.Kind; | 115 | 420 | } | 116 | 422 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27LookupPrefixOperatorRequestEvEES6_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28LookupPostfixOperatorRequestEvEES6_ OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28LookupPrecedenceGroupRequestEvEES6_ Line | Count | Source | 110 | 350 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 350 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 0 | return lhs.Req == rhs.Req; | 113 | 350 | } else { | 114 | 350 | return lhs.Kind == rhs.Kind; | 115 | 350 | } | 116 | 350 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_27DirectOperatorLookupRequestEvEES6_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvEES6_ Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_23ExprPatternMatchRequestEvEES6_ ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_30ConditionalRequirementsRequestEvEES6_ Line | Count | Source | 110 | 2.15k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 2.15k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 47 | return lhs.Req == rhs.Req; | 113 | 2.11k | } else { | 114 | 2.11k | return lhs.Kind == rhs.Kind; | 115 | 2.11k | } | 116 | 2.15k | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18TypeWitnessRequestEvEES6_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_28AssociatedConformanceRequestEvEES6_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_19ValueWitnessRequestEvEES6_ ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_37LookupAllConformancesInContextRequestEvEES6_ Line | Count | Source | 110 | 1.10k | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 1.10k | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 4 | return lhs.Req == rhs.Req; | 113 | 1.09k | } else { | 114 | 1.09k | return lhs.Kind == rhs.Kind; | 115 | 1.09k | } | 116 | 1.10k | } |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_17RawCommentRequestEvEES6_ Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_31AbstractGenericSignatureRequestEvEES6_ Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_24IsSingleValueStmtRequestEvEES6_ Line | Count | Source | 110 | 844 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 844 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 12 | return lhs.Req == rhs.Req; | 113 | 832 | } else { | 114 | 832 | return lhs.Kind == rhs.Kind; | 115 | 832 | } | 116 | 844 | } |
Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18BreakTargetRequestEvEES6_ Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_21ContinueTargetRequestEvEES6_ TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_18RequirementRequestEvEES6_ Line | Count | Source | 110 | 744 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 744 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 3 | return lhs.Req == rhs.Req; | 113 | 741 | } else { | 114 | 741 | return lhs.Kind == rhs.Kind; | 115 | 741 | } | 116 | 744 | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvEES6_ Line | Count | Source | 110 | 598 | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { | 111 | 598 | if (lhs.Kind == StorageKind::Normal && rhs.Kind == StorageKind::Normal) { | 112 | 4 | return lhs.Req == rhs.Req; | 113 | 594 | } else { | 114 | 594 | return lhs.Kind == rhs.Kind; | 115 | 594 | } | 116 | 598 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_1eqERKNS1_10RequestKeyINS_20USRGenerationRequestEvEES6_ |
117 | | friend bool operator!=(const RequestKey &lhs, const RequestKey &rhs) { |
118 | | return !(lhs == rhs); |
119 | | } |
120 | 60.9k | friend llvm::hash_code hash_value(const RequestKey &key) { |
121 | 60.9k | if (key.Kind != StorageKind::Normal) |
122 | 0 | return 1; |
123 | 60.9k | return hash_value(key.Req); |
124 | 60.9k | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18OptimizedIRRequestEvEE Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22SymbolSourceMapRequestEvEE Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20USRGenerationRequestEvEE Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18RenamedDeclRequestEvEE Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24IDEInspectionFileRequestEvEE Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEE Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24ConstantValueInfoRequestEvEE Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEE Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEE Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEE Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEE Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEE Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEE Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22SymbolSourceMapRequestEvEE IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_12IRGenRequestEvEE Line | Count | Source | 120 | 1 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1 | return hash_value(key.Req); | 124 | 1 | } |
Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17LoweredSILRequestEvEE Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20PublicSymbolsRequestEvEE Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18GenerateTBDRequestEvEE Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_13APIGenRequestEvEE SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18ASTLoweringRequestEvEE Line | Count | Source | 120 | 5 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 5 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 5 | return hash_value(key.Req); | 124 | 5 | } |
Unexecuted instantiation: SILGen.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21ParseSILModuleRequestEvEE Unexecuted instantiation: Common.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28TangentStoredPropertyRequestEvEE Unexecuted instantiation: PassManager.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25ExecuteSILPipelineRequestEvEE Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18ASTLoweringRequestEvEE Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28ProvideDefaultImplForRequestEvEE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26ResolveProtocolNameRequestEvEE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28ProvideDefaultImplForRequestEvEE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_29CollectOverriddenDeclsRequestEvEE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23IsDeclApplicableRequestEvEE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24TypeRelationCheckRequestEvEE Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_15InitKindRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23OpaqueResultTypeRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26LazyStoragePropertyRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27DefaultInitializerIsolationEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23FunctionOperatorRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30OperatorPrecedenceGroupRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22MacroDefinitionRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17HasStorageRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27DirectOperatorLookupRequestEvEE Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvEE Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26MangleLocalTypeDeclRequestEvEE Unexecuted instantiation: ParseSIL.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEE Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28PreCheckResultBuilderRequestEvEE Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31ExpandMacroExpansionExprRequestEvEE CSRanking.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_32CompareDeclSpecializationRequestEvEE Line | Count | Source | 120 | 14 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 14 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 14 | return hash_value(key.Req); | 124 | 14 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_29EnumElementExprPatternRequestEvEE Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_34HasDynamicCallableAttributeRequestEvEE Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEE CSStep.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25IsDeclRefinementOfRequestEvEE Line | Count | Source | 120 | 51 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 51 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 51 | return hash_value(key.Req); | 124 | 51 | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18CxxRecordSemanticsEvEE CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_35HasUserDefinedDesignatedInitRequestEvEE Line | Count | Source | 120 | 40 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 40 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 40 | return hash_value(key.Req); | 124 | 40 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_44AreAllStoredPropertiesDefaultInitableRequestEvEE Line | Count | Source | 120 | 17 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 17 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 17 | return hash_value(key.Req); | 124 | 17 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21ClosureEffectsRequestEvEE Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31ClosureHasExplicitResultRequestEvEE DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28TangentStoredPropertyRequestEvEE Line | Count | Source | 120 | 4 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 4 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 4 | return hash_value(key.Req); | 124 | 4 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23IsDeclApplicableRequestEvEE Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEE Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_37RootTypeOfKeypathDynamicMemberRequestEvEE Unexecuted instantiation: MiscDiagnostics.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEE Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25PreCheckReturnStmtRequestEvEE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_29SynthesizeMainFunctionRequestEvEE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21CustomAttrTypeRequestEvEE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24ResolveMacroConformancesEvEE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31InferredGenericSignatureRequestEvEE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27GlobalActorAttributeRequestEvEE Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEE Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEE Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEE Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27GlobalActorAttributeRequestEvEE Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21CustomAttrTypeRequestEvEE Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22HasIsolatedSelfRequestEvEE Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_35DistributedModuleIsAvailableRequestEvEE Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31CheckDistributedFunctionRequestEvEE TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30ValidatePrecedenceGroupRequestEvEE Line | Count | Source | 120 | 16 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 16 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 16 | return hash_value(key.Req); | 124 | 16 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEE TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_29SynthesizeMainFunctionRequestEvEE Line | Count | Source | 120 | 15 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 15 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 15 | return hash_value(key.Req); | 124 | 15 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEE Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26HasCircularRawValueRequestEvEE Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22OverriddenDeclsRequestEvEE Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30IsABICompatibleOverrideRequestEvEE Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28ResolveImplicitMemberRequestEvEE Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_34TypeCheckObjCImplementationRequestEvEE Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20InheritedTypeRequestEvEE Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30ExternalMacroDefinitionRequestEvEE TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25CheckRedeclarationRequestEvEE Line | Count | Source | 120 | 141 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 141 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 141 | return hash_value(key.Req); | 124 | 141 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21ExpandExtensionMacrosEvEE TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22ApplyAccessNoteRequestEvEE Line | Count | Source | 120 | 734 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 734 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 734 | return hash_value(key.Req); | 124 | 734 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ResolveMacroRequestEvEE Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28ResolveImplicitMemberRequestEvEE Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27DirectOperatorLookupRequestEvEE Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvEE TypeCheckExpr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18DefaultTypeRequestEvEE Line | Count | Source | 120 | 2 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2 | return hash_value(key.Req); | 124 | 2 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31InferredGenericSignatureRequestEvEE Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30ExternalMacroDefinitionRequestEvEE Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25CompilerPluginLoadRequestEvEE Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEE Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEE TypeCheckPattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18PatternTypeRequestEvEE Line | Count | Source | 120 | 69 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 69 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 69 | return hash_value(key.Req); | 124 | 69 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEE Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31AttachedPropertyWrappersRequestEvEE Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21CustomAttrTypeRequestEvEE Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEE TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20InheritedTypeRequestEvEE Line | Count | Source | 120 | 30 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 30 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 30 | return hash_value(key.Req); | 124 | 30 | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEE Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21CustomAttrTypeRequestEvEE TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25PreCheckReturnStmtRequestEvEE Line | Count | Source | 120 | 62 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 62 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 62 | return hash_value(key.Req); | 124 | 62 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26LocalDiscriminatorsRequestEvEE Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27PreCheckFunctionBodyRequestEvEE Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEE Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22ExpandPeerMacroRequestEvEE Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_32PropertyWrapperLValuenessRequestEvEE TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20ExpandAccessorMacrosEvEE Line | Count | Source | 120 | 68 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 68 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 68 | return hash_value(key.Req); | 124 | 68 | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEE Unexecuted instantiation: TypeCheckType.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18ResolveTypeRequestEvEE TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26TypeCheckSourceFileRequestEvEE Line | Count | Source | 120 | 6 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 6 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 6 | return hash_value(key.Req); | 124 | 6 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_49CheckInconsistentImplementationOnlyImportsRequestEvEE Line | Count | Source | 120 | 13 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 13 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 13 | return hash_value(key.Req); | 124 | 13 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_38CheckInconsistentSPIOnlyImportsRequestEvEE Line | Count | Source | 120 | 13 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 13 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 13 | return hash_value(key.Req); | 124 | 13 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_36CheckInconsistentAccessLevelOnImportEvEE Line | Count | Source | 120 | 13 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 13 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 13 | return hash_value(key.Req); | 124 | 13 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_41CheckInconsistentWeakLinkedImportsRequestEvEE Line | Count | Source | 120 | 13 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 13 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 13 | return hash_value(key.Req); | 124 | 13 | } |
TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31InferredGenericSignatureRequestEvEE Line | Count | Source | 120 | 119 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 119 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 119 | return hash_value(key.Req); | 124 | 119 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28TypeCheckASTNodeAtLocRequestEvEE Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEE Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23ClangRecordMemberLookupEvEE Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEE ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17HasStorageRequestEvEE Line | Count | Source | 120 | 1.08k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1.08k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1.08k | return hash_value(key.Req); | 124 | 1.08k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_37ObjCInterfaceAndImplementationRequestEvEE Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24ClangDirectLookupRequestEvEE Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23ClangRecordMemberLookupEvEE Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26ClangCategoryLookupRequestEvEE Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_15InitKindRequestEvEE Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17HasStorageRequestEvEE Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEE Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEE Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18CxxRecordSemanticsEvEE Unexecuted instantiation: ImportName.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18IsSafeUseOfCxxDeclEvEE Unexecuted instantiation: ImportType.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20CxxRecordAsSwiftTypeEvEE Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ParseMembersRequestEvEE Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30IDEInspectionSecondPassRequestEvEE Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26LocalDiscriminatorsRequestEvEE Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22ParseSourceFileRequestEvEE Unexecuted instantiation: AccessRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31TypeDeclsFromWhereClauseRequestEvEE ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEE Line | Count | Source | 120 | 3.51k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 3.51k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 3.51k | return hash_value(key.Req); | 124 | 3.51k | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEE Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEE Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEE Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEE Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEE Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22HasIsolatedSelfRequestEvEE Unexecuted instantiation: ASTPrinter.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24ClangDirectLookupRequestEvEE Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24ResolveMacroConformancesEvEE Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30TypeEraserHasViableInitRequestEvEE Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28ResolveTypeEraserTypeRequestEvEE Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31ResolveRawLayoutLikeTypeRequestEvEE Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31SpecializeAttrTargetDeclRequestEvEE Line | Count | Source | 120 | 16 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 16 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 16 | return hash_value(key.Req); | 124 | 16 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_36SerializeAttrGenericSignatureRequestEvEE Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_39DifferentiableAttributeTypeCheckRequestEvEE Line | Count | Source | 120 | 8 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 8 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 8 | return hash_value(key.Req); | 124 | 8 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_33DerivativeAttrOriginalDeclRequestEvEE Line | Count | Source | 120 | 10 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 10 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 10 | return hash_value(key.Req); | 124 | 10 | } |
Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_29ImplementsAttrProtocolRequestEvEE Line | Count | Source | 120 | 17 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 17 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 17 | return hash_value(key.Req); | 124 | 17 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_38InitAccessorReferencedVariablesRequestEvEE Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_33SemanticAvailableRangeAttrRequestEvEE Availability.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30SemanticUnavailableAttrRequestEvEE Line | Count | Source | 120 | 319 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 319 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 319 | return hash_value(key.Req); | 124 | 319 | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ParseMembersRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27ExpandMemberAttributeMacrosEvEE Line | Count | Source | 120 | 13.3k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 13.3k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 13.3k | return hash_value(key.Req); | 124 | 13.3k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22ExpandPeerMacroRequestEvEE Line | Count | Source | 120 | 4.21k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 4.21k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 4.21k | return hash_value(key.Req); | 124 | 4.21k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31ExpandMacroExpansionDeclRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ResolveMacroRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27GlobalActorAttributeRequestEvEE Line | Count | Source | 120 | 2.32k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2.32k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2.32k | return hash_value(key.Req); | 124 | 2.32k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17ThrownTypeRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28IsAccessorTransparentRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23GenericParamListRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23GenericSignatureRequestEvEE Line | Count | Source | 120 | 28 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 28 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 28 | return hash_value(key.Req); | 124 | 28 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25ScopedImportLookupRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20InheritedTypeRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22ExtendedNominalRequestEvEE Line | Count | Source | 120 | 6 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 6 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 6 | return hash_value(key.Req); | 124 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31DefaultAndMaxAccessLevelRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ExtendedTypeRequestEvEE Line | Count | Source | 120 | 6 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 6 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 6 | return hash_value(key.Req); | 124 | 6 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26PatternBindingEntryRequestEvEE Line | Count | Source | 120 | 30 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 30 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 30 | return hash_value(key.Req); | 124 | 30 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30RequiresOpaqueAccessorsRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_36RequiresOpaqueModifyCoroutineRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25SynthesizeAccessorRequestEvEE Line | Count | Source | 120 | 14 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 14 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 14 | return hash_value(key.Req); | 124 | 14 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30IsABICompatibleOverrideRequestEvEE Line | Count | Source | 120 | 7 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 7 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 7 | return hash_value(key.Req); | 124 | 7 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23IsGetterMutatingRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23IsSetterMutatingRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26OpaqueReadOwnershipRequestEvEE Line | Count | Source | 120 | 14 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 14 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 14 | return hash_value(key.Req); | 124 | 14 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26LocalDiscriminatorsRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22OverriddenDeclsRequestEvEE Line | Count | Source | 120 | 2 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2 | return hash_value(key.Req); | 124 | 2 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23OpaqueResultTypeRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_13IsObjCRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_14IsFinalRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17IsMoveOnlyRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_16IsDynamicRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30DynamicallyReplacedDeclRequestEvEE Line | Count | Source | 120 | 2.17k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2.17k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2.17k | return hash_value(key.Req); | 124 | 2.17k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_36IsImplicitlyUnwrappedOptionalRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20InterfaceTypeRequestEvEE Line | Count | Source | 120 | 299 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 299 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 299 | return hash_value(key.Req); | 124 | 299 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18AccessLevelRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23StoredPropertiesRequestEvEE Line | Count | Source | 120 | 91 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 91 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 91 | return hash_value(key.Req); | 124 | 91 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_29InitAccessorPropertiesRequestEvEE Line | Count | Source | 120 | 19 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 19 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 19 | return hash_value(key.Req); | 124 | 19 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31MemberwiseInitPropertiesRequestEvEE Line | Count | Source | 120 | 22 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 22 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 22 | return hash_value(key.Req); | 124 | 22 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_40StoredPropertiesAndMissingMembersRequestEvEE Line | Count | Source | 120 | 4 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 4 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 4 | return hash_value(key.Req); | 124 | 4 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30PropertyWrapperTypeInfoRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_14IsActorRequestEvEE Line | Count | Source | 120 | 596 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 596 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 596 | return hash_value(key.Req); | 124 | 596 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25IsDistributedActorRequestEvEE Line | Count | Source | 120 | 644 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 644 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 644 | return hash_value(key.Req); | 124 | 644 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21UnderlyingTypeRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21StructuralTypeRequestEvEE Line | Count | Source | 120 | 536 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 536 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 536 | return hash_value(key.Req); | 124 | 536 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28DefaultDefinitionTypeRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18EnumRawTypeRequestEvEE Line | Count | Source | 120 | 292 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 292 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 292 | return hash_value(key.Req); | 124 | 292 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24HasMemberwiseInitRequestEvEE Line | Count | Source | 120 | 35 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 35 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 35 | return hash_value(key.Req); | 124 | 35 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31SynthesizeMemberwiseInitRequestEvEE Line | Count | Source | 120 | 18 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 18 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 18 | return hash_value(key.Req); | 124 | 18 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_37ResolveEffectiveMemberwiseInitRequestEvEE Line | Count | Source | 120 | 26 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 26 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 26 | return hash_value(key.Req); | 124 | 26 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21HasDefaultInitRequestEvEE Line | Count | Source | 120 | 40 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 40 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 40 | return hash_value(key.Req); | 124 | 40 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28SynthesizeDefaultInitRequestEvEE Line | Count | Source | 120 | 6 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 6 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 6 | return hash_value(key.Req); | 124 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26GlobalActorInstanceRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20GetDestructorRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21IsDefaultActorRequestEvEE Line | Count | Source | 120 | 1 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1 | return hash_value(key.Req); | 124 | 1 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_39HasMissingDesignatedInitializersRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_37InheritsSuperclassInitializersRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25ClassAncestryFlagsRequestEvEE Line | Count | Source | 120 | 5 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 5 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 5 | return hash_value(key.Req); | 124 | 5 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26CustomRefCountingOperationEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26HasCircularRawValueRequestEvEE Line | Count | Source | 120 | 2 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2 | return hash_value(key.Req); | 124 | 2 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25InheritedProtocolsRequestEvEE Line | Count | Source | 120 | 2 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2 | return hash_value(key.Req); | 124 | 2 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27ProtocolRequirementsRequestEvEE Line | Count | Source | 120 | 2 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2 | return hash_value(key.Req); | 124 | 2 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21SuperclassTypeRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21SuperclassDeclRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28ProtocolRequiresClassRequestEvEE Line | Count | Source | 120 | 2 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2 | return hash_value(key.Req); | 124 | 2 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_32ExistentialConformsToSelfRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_42HasSelfOrAssociatedTypeRequirementsRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_29PrimaryAssociatedTypesRequestEvEE Line | Count | Source | 120 | 2 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2 | return hash_value(key.Req); | 124 | 2 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_29StructuralRequirementsRequestEvEE Line | Count | Source | 120 | 7 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 7 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 7 | return hash_value(key.Req); | 124 | 7 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28TypeAliasRequirementsRequestEvEE Line | Count | Source | 120 | 7 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 7 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 7 | return hash_value(key.Req); | 124 | 7 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27ProtocolDependenciesRequestEvEE Line | Count | Source | 120 | 210 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 210 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 210 | return hash_value(key.Req); | 124 | 210 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27RequirementSignatureRequestEvEE Line | Count | Source | 120 | 2 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2 | return hash_value(key.Req); | 124 | 2 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_36HasCircularInheritedProtocolsRequestEvEE Line | Count | Source | 120 | 4 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 4 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 4 | return hash_value(key.Req); | 124 | 4 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17HasStorageRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22StorageImplInfoRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24SetterAccessLevelRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22HasInitAccessorRequestEvEE Line | Count | Source | 120 | 840 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 840 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 840 | return hash_value(key.Req); | 124 | 840 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27DefaultInitializerIsolationEvEE Line | Count | Source | 120 | 9.70k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 9.70k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 9.70k | return hash_value(key.Req); | 124 | 9.70k | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20NamingPatternRequestEvEE Line | Count | Source | 120 | 19 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 19 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 19 | return hash_value(key.Req); | 124 | 19 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21ParamSpecifierRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31AttachedPropertyWrappersRequestEvEE Line | Count | Source | 120 | 7.27k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 7.27k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 7.27k | return hash_value(key.Req); | 124 | 7.27k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24CustomAttrNominalRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_34AttachedPropertyWrapperTypeRequestEvEE Line | Count | Source | 120 | 21 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 21 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 21 | return hash_value(key.Req); | 124 | 21 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_41PropertyWrapperBackingPropertyTypeRequestEvEE Line | Count | Source | 120 | 21 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 21 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 21 | return hash_value(key.Req); | 124 | 21 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_40PropertyWrapperAuxiliaryVariablesRequestEvEE Line | Count | Source | 120 | 40 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 40 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 40 | return hash_value(key.Req); | 124 | 40 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_37PropertyWrapperInitializerInfoRequestEvEE Line | Count | Source | 120 | 40 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 40 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 40 | return hash_value(key.Req); | 124 | 40 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_32PropertyWrapperMutabilityRequestEvEE Line | Count | Source | 120 | 51 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 51 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 51 | return hash_value(key.Req); | 124 | 51 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26LazyStoragePropertyRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_33DefaultArgumentInitContextRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26DefaultArgumentExprRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26DefaultArgumentTypeRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24ResultBuilderTypeRequestEvEE Line | Count | Source | 120 | 98 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 98 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 98 | return hash_value(key.Req); | 124 | 98 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28AttachedResultBuilderRequestEvEE Line | Count | Source | 120 | 227 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 227 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 227 | return hash_value(key.Req); | 124 | 227 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17ResultTypeRequestEvEE Line | Count | Source | 120 | 25 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 25 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 25 | return hash_value(key.Req); | 124 | 25 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18RenamedDeclRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_32ParseAbstractFunctionBodyRequestEvEE Line | Count | Source | 120 | 45 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 45 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 45 | return hash_value(key.Req); | 124 | 45 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28TypeCheckFunctionBodyRequestEvEE Line | Count | Source | 120 | 106 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 106 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 106 | return hash_value(key.Req); | 124 | 106 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28IsFunctionBodySkippedRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26NeedsNewVTableEntryRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23FunctionOperatorRequestEvEE Line | Count | Source | 120 | 3.27k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 3.27k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 3.27k | return hash_value(key.Req); | 124 | 3.27k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_15IsStaticRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19SimpleDidSetRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21SelfAccessKindRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20EnumRawValuesRequestEvEE Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_15InitKindRequestEvEE Line | Count | Source | 120 | 547 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 547 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 547 | return hash_value(key.Req); | 124 | 547 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19BodyInitKindRequestEvEE Line | Count | Source | 120 | 6 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 6 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 6 | return hash_value(key.Req); | 124 | 6 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30OperatorPrecedenceGroupRequestEvEE Line | Count | Source | 120 | 94 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 94 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 94 | return hash_value(key.Req); | 124 | 94 | } |
Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21ActorIsolationRequestEvEE Line | Count | Source | 120 | 2.37k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2.37k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2.37k | return hash_value(key.Req); | 124 | 2.37k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31ExpandMacroExpansionExprRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24ResolveMacroConformancesEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22MacroDefinitionRequestEvEE Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28ResolveImplicitMemberRequestEvEE DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26FragileFunctionKindRequestEvEE Line | Count | Source | 120 | 253 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 253 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 253 | return hash_value(key.Req); | 124 | 253 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ParseMembersRequestEvEE Line | Count | Source | 120 | 46 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 46 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 46 | return hash_value(key.Req); | 124 | 46 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17ABIMembersRequestEvEE Line | Count | Source | 120 | 48 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 48 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 48 | return hash_value(key.Req); | 124 | 48 | } |
DeclContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17AllMembersRequestEvEE Line | Count | Source | 120 | 14 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 14 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 14 | return hash_value(key.Req); | 124 | 14 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_48GetDistributedActorArgumentDecodingMethodRequestEvEE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_43GetDistributedActorInvocationDecoderRequestEvEE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEvEE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEvEE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26GetDistributedThunkRequestEvEE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_40GetDistributedActorSystemPropertyRequestEvEE Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_36GetDistributedActorIDPropertyRequestEvEE Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27SemanticBriefCommentRequestEvEE Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_36PolymorphicEffectRequirementsRequestEvEE Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28PolymorphicEffectKindRequestEvEE Line | Count | Source | 120 | 74 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 74 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 74 | return hash_value(key.Req); | 124 | 74 | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27ConformanceHasEffectRequestEvEE Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31CallerSideDefaultArgExprRequestEvEE Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26LocalDiscriminatorsRequestEvEE Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21ClosureEffectsRequestEvEE GenericSignature.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31AbstractGenericSignatureRequestEvEE Line | Count | Source | 120 | 36 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 36 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 36 | return hash_value(key.Req); | 124 | 36 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22IsNonUserModuleRequestEvEE Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28ModuleImplicitImportsRequestEvEE Line | Count | Source | 120 | 14 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 14 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 14 | return hash_value(key.Req); | 124 | 14 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25PrimarySourceFilesRequestEvEE Line | Count | Source | 120 | 12 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 12 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 12 | return hash_value(key.Req); | 124 | 12 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26MangleLocalTypeDeclRequestEvEE Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21ExpandExtensionMacrosEvEE Line | Count | Source | 120 | 89 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 89 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 89 | return hash_value(key.Req); | 124 | 89 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26GetImplicitSendableRequestEvEE Line | Count | Source | 120 | 49 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 49 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 49 | return hash_value(key.Req); | 124 | 49 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_41GetDistributedActorImplicitCodableRequestEvEE Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22ParseSourceFileRequestEvEE Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_29HasImportsMatchingFlagRequestEvEE Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_16SPIGroupsRequestEvEE Line | Count | Source | 120 | 2.06k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 2.06k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 2.06k | return hash_value(key.Req); | 124 | 2.06k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25ModuleLibraryLevelRequestEvEE Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25ParseTopLevelDeclsRequestEvEE Line | Count | Source | 120 | 17 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 17 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 17 | return hash_value(key.Req); | 124 | 17 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_25ExportedSourceFileRequestEvEE Line | Count | Source | 120 | 14 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 14 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 14 | return hash_value(key.Req); | 124 | 14 | } |
Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22GetSourceFileAsyncNodeEvEE Line | Count | Source | 120 | 4 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 4 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 4 | return hash_value(key.Req); | 124 | 4 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_32LookupConformanceInModuleRequestEvEE Unexecuted instantiation: ModuleNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21LookupInModuleRequestEvEE NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_35ExpandSynthesizedMemberMacroRequestEvEE Line | Count | Source | 120 | 34 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 34 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 34 | return hash_value(key.Req); | 124 | 34 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21ExpandExtensionMacrosEvEE NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_40PotentialMacroExpansionsInContextRequestEvEE Line | Count | Source | 120 | 1.46k | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 1.46k | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 1.46k | return hash_value(key.Req); | 124 | 1.46k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21SuperclassDeclRequestEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30IsCallAsFunctionNominalRequestEvEE NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_38HasDynamicMemberLookupAttributeRequestEvEE Line | Count | Source | 120 | 77 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 77 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 77 | return hash_value(key.Req); | 124 | 77 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_34HasDynamicCallableAttributeRequestEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_32SelfBoundsFromWhereClauseRequestEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_37SelfBoundsFromGenericSignatureRequestEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24UnqualifiedLookupRequestEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19DirectLookupRequestEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24CXXNamespaceMemberLookupEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23ClangRecordMemberLookupEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22AnyObjectLookupRequestEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_22QualifiedLookupRequestEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28ModuleQualifiedLookupRequestEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_36UnderlyingTypeDeclsReferencedRequestEvEE Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31InheritedDeclsReferencedRequestEvEE OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_26LookupInfixOperatorRequestEvEE Line | Count | Source | 120 | 14 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 14 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 14 | return hash_value(key.Req); | 124 | 14 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27LookupPrefixOperatorRequestEvEE Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28LookupPostfixOperatorRequestEvEE OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28LookupPrecedenceGroupRequestEvEE Line | Count | Source | 120 | 5 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 5 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 5 | return hash_value(key.Req); | 124 | 5 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_27DirectOperatorLookupRequestEvEE Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_34DirectPrecedenceGroupLookupRequestEvEE Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_23ExprPatternMatchRequestEvEE ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_30ConditionalRequirementsRequestEvEE Line | Count | Source | 120 | 112 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 112 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 112 | return hash_value(key.Req); | 124 | 112 | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18TypeWitnessRequestEvEE Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_28AssociatedConformanceRequestEvEE Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_19ValueWitnessRequestEvEE ProtocolConformance.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_37LookupAllConformancesInContextRequestEvEE Line | Count | Source | 120 | 63 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 63 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 63 | return hash_value(key.Req); | 124 | 63 | } |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_17RawCommentRequestEvEE Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_31AbstractGenericSignatureRequestEvEE Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_24IsSingleValueStmtRequestEvEE Line | Count | Source | 120 | 49 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 49 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 49 | return hash_value(key.Req); | 124 | 49 | } |
Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18BreakTargetRequestEvEE Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_21ContinueTargetRequestEvEE TypeCheckRequests.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_18RequirementRequestEvEE Line | Count | Source | 120 | 47 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 47 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 47 | return hash_value(key.Req); | 124 | 47 | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_40ExpandChildTypeRefinementContextsRequestEvEE Line | Count | Source | 120 | 37 | friend llvm::hash_code hash_value(const RequestKey &key) { | 121 | 37 | if (key.Kind != StorageKind::Normal) | 122 | 0 | return 1; | 123 | 37 | return hash_value(key.Req); | 124 | 37 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12_GLOBAL__N_110hash_valueERKNS1_10RequestKeyINS_20USRGenerationRequestEvEE |
125 | | }; |
126 | | |
127 | | template <typename Request> |
128 | | class RequestKey<Request, typename detail::TupleHasDenseMapInfo< |
129 | | typename Request::Storage>::type> { |
130 | | friend struct llvm::DenseMapInfo<RequestKey>; |
131 | | using Info = llvm::DenseMapInfo<typename Request::Storage>; |
132 | | |
133 | | Request Req; |
134 | | |
135 | | static RequestKey getEmpty() { |
136 | | return RequestKey(Request(Info::getEmptyKey())); |
137 | | } |
138 | | static RequestKey getTombstone() { |
139 | | return RequestKey(Request(Info::getTombstoneKey())); |
140 | | } |
141 | | |
142 | | public: |
143 | | explicit RequestKey(Request req) : Req(std::move(req)) {} |
144 | | |
145 | | bool isStorageEqual(const Request &req) const { |
146 | | return Req == req; |
147 | | } |
148 | | friend bool operator==(const RequestKey &lhs, const RequestKey &rhs) { |
149 | | return lhs.Req == rhs.Req; |
150 | | } |
151 | | friend bool operator!=(const RequestKey &lhs, const RequestKey &rhs) { |
152 | | return !(lhs == rhs); |
153 | | } |
154 | | friend llvm::hash_code hash_value(const RequestKey &key) { |
155 | | return hash_value(key.Req); |
156 | | } |
157 | | }; |
158 | | |
159 | | } // end namespace |
160 | | |
161 | | /// Type-erased wrapper for caching results of a single type of request. |
162 | | class PerRequestCache { |
163 | | void *Storage; |
164 | | std::function<void(void *)> Deleter; |
165 | | |
166 | | PerRequestCache(void *storage, std::function<void(void *)> deleter) |
167 | 659 | : Storage(storage), Deleter(deleter) {} |
168 | | |
169 | | public: |
170 | 3.10k | PerRequestCache() : Storage(nullptr), Deleter([](void *) {}) {} |
171 | | PerRequestCache(PerRequestCache &&other) |
172 | 659 | : Storage(other.Storage), Deleter(std::move(other.Deleter)) { |
173 | 659 | other.Storage = nullptr; |
174 | 659 | } |
175 | | |
176 | 659 | PerRequestCache &operator=(PerRequestCache &&other) { |
177 | 659 | if (&other != this) { |
178 | 659 | this->~PerRequestCache(); |
179 | 659 | new (this) PerRequestCache(std::move(other)); |
180 | 659 | } |
181 | 659 | return *this; |
182 | 659 | } |
183 | | |
184 | | PerRequestCache(const PerRequestCache &) = delete; |
185 | | PerRequestCache &operator=(const PerRequestCache &) = delete; |
186 | | |
187 | | template <typename Request> |
188 | 659 | static PerRequestCache makeEmpty() { |
189 | 659 | using Map = |
190 | 659 | llvm::DenseMap<RequestKey<Request>, |
191 | 659 | typename Request::OutputType>; |
192 | 659 | return PerRequestCache(new Map(), |
193 | 659 | [](void *ptr) { delete static_cast<Map *>(ptr); });Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_20USRGenerationRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_24IDEInspectionFileRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_24ConstantValueInfoRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_22SymbolSourceMapRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26ResolveProtocolNameRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28ProvideDefaultImplForRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_29CollectOverriddenDeclsRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_23IsDeclApplicableRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_24TypeRelationCheckRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28PreCheckResultBuilderRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_32CompareDeclSpecializationRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_29EnumElementExprPatternRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25IsDeclRefinementOfRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_35HasUserDefinedDesignatedInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_44AreAllStoredPropertiesDefaultInitableRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31ClosureHasExplicitResultRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28TangentStoredPropertyRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_35DistributedModuleIsAvailableRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31CheckDistributedFunctionRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30ValidatePrecedenceGroupRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_29SynthesizeMainFunctionRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_34TypeCheckObjCImplementationRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_22ApplyAccessNoteRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30ExternalMacroDefinitionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25CompilerPluginLoadRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_18PatternTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_24CustomAttrNominalRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25PreCheckReturnStmtRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_32PropertyWrapperLValuenessRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_20ExpandAccessorMacrosEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_49CheckInconsistentImplementationOnlyImportsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_38CheckInconsistentSPIOnlyImportsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_36CheckInconsistentAccessLevelOnImportEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_41CheckInconsistentWeakLinkedImportsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31InferredGenericSignatureRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 9 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26CustomRefCountingOperationEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_17HasStorageRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26LocalDiscriminatorsRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_19ExtendedTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_24ResolveMacroConformancesEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30TypeEraserHasViableInitRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31SpecializeAttrTargetDeclRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_33DerivativeAttrOriginalDeclRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_29ImplementsAttrProtocolRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_38InitAccessorReferencedVariablesRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_33SemanticAvailableRangeAttrRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30SemanticUnavailableAttrRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_27ExpandMemberAttributeMacrosEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_22ExpandPeerMacroRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31ExpandMacroExpansionDeclRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_19ResolveMacroRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_27GlobalActorAttributeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ScopedImportLookupRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30IsABICompatibleOverrideRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_23OpaqueResultTypeRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30DynamicallyReplacedDeclRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_23StoredPropertiesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 11 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_29InitAccessorPropertiesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31MemberwiseInitPropertiesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_40StoredPropertiesAndMissingMembersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30PropertyWrapperTypeInfoRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_14IsActorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 9 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25IsDistributedActorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_21StructuralTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_18EnumRawTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 10 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_24HasMemberwiseInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31SynthesizeMemberwiseInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_37ResolveEffectiveMemberwiseInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_21HasDefaultInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28SynthesizeDefaultInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26GlobalActorInstanceRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_21IsDefaultActorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ClassAncestryFlagsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26HasCircularRawValueRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_29PrimaryAssociatedTypesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_29StructuralRequirementsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28TypeAliasRequirementsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_27ProtocolDependenciesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_36HasCircularInheritedProtocolsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_22HasInitAccessorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_27DefaultInitializerIsolationEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31AttachedPropertyWrappersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_34AttachedPropertyWrapperTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_41PropertyWrapperBackingPropertyTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_40PropertyWrapperAuxiliaryVariablesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_37PropertyWrapperInitializerInfoRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_32PropertyWrapperMutabilityRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26LazyStoragePropertyRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_24ResultBuilderTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 8 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28AttachedResultBuilderRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 11 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_18RenamedDeclRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_23FunctionOperatorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 9 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_19SimpleDidSetRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_15InitKindRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_19BodyInitKindRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30OperatorPrecedenceGroupRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 9 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_21ActorIsolationRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31ExpandMacroExpansionExprRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_22MacroDefinitionRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26FragileFunctionKindRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_19ParseMembersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 8 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_17ABIMembersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_17AllMembersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_48GetDistributedActorArgumentDecodingMethodRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_43GetDistributedActorInvocationDecoderRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26GetDistributedThunkRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_40GetDistributedActorSystemPropertyRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_36GetDistributedActorIDPropertyRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_27SemanticBriefCommentRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_36PolymorphicEffectRequirementsRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28PolymorphicEffectKindRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_27ConformanceHasEffectRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_21ClosureEffectsRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_31AbstractGenericSignatureRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_22IsNonUserModuleRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28ModuleImplicitImportsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25PrimarySourceFilesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26MangleLocalTypeDeclRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_21ExpandExtensionMacrosEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26GetImplicitSendableRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 8 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_41GetDistributedActorImplicitCodableRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_16SPIGroupsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ModuleLibraryLevelRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ParseTopLevelDeclsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ExportedSourceFileRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_22GetSourceFileAsyncNodeEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_35ExpandSynthesizedMemberMacroRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_40PotentialMacroExpansionsInContextRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30IsCallAsFunctionNominalRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_38HasDynamicMemberLookupAttributeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_34HasDynamicCallableAttributeRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_26LookupInfixOperatorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_27LookupPrefixOperatorRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28LookupPostfixOperatorRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_28LookupPrecedenceGroupRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_30ConditionalRequirementsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 10 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_37LookupAllConformancesInContextRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 8 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_17RawCommentRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_24IsSingleValueStmtRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_18BreakTargetRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_21ContinueTargetRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_18RequirementRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator15PerRequestCache9makeEmptyINS_40ExpandChildTypeRefinementContextsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
|
194 | 659 | } Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_20USRGenerationRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_24IDEInspectionFileRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_24ConstantValueInfoRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26CustomRefCountingOperationEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_22SymbolSourceMapRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26ResolveProtocolNameRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28ProvideDefaultImplForRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_29CollectOverriddenDeclsRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_23IsDeclApplicableRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_24TypeRelationCheckRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28PreCheckResultBuilderRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_32CompareDeclSpecializationRequestEEES1_v Line | Count | Source | 188 | 3 | static PerRequestCache makeEmpty() { | 189 | 3 | using Map = | 190 | 3 | llvm::DenseMap<RequestKey<Request>, | 191 | 3 | typename Request::OutputType>; | 192 | 3 | return PerRequestCache(new Map(), | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 3 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_29EnumElementExprPatternRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25IsDeclRefinementOfRequestEEES1_v Line | Count | Source | 188 | 3 | static PerRequestCache makeEmpty() { | 189 | 3 | using Map = | 190 | 3 | llvm::DenseMap<RequestKey<Request>, | 191 | 3 | typename Request::OutputType>; | 192 | 3 | return PerRequestCache(new Map(), | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 3 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_35HasUserDefinedDesignatedInitRequestEEES1_v Line | Count | Source | 188 | 6 | static PerRequestCache makeEmpty() { | 189 | 6 | using Map = | 190 | 6 | llvm::DenseMap<RequestKey<Request>, | 191 | 6 | typename Request::OutputType>; | 192 | 6 | return PerRequestCache(new Map(), | 193 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 6 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_44AreAllStoredPropertiesDefaultInitableRequestEEES1_v Line | Count | Source | 188 | 5 | static PerRequestCache makeEmpty() { | 189 | 5 | using Map = | 190 | 5 | llvm::DenseMap<RequestKey<Request>, | 191 | 5 | typename Request::OutputType>; | 192 | 5 | return PerRequestCache(new Map(), | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 5 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31ClosureHasExplicitResultRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28TangentStoredPropertyRequestEEES1_v Line | Count | Source | 188 | 1 | static PerRequestCache makeEmpty() { | 189 | 1 | using Map = | 190 | 1 | llvm::DenseMap<RequestKey<Request>, | 191 | 1 | typename Request::OutputType>; | 192 | 1 | return PerRequestCache(new Map(), | 193 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_35DistributedModuleIsAvailableRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31CheckDistributedFunctionRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30ValidatePrecedenceGroupRequestEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_29SynthesizeMainFunctionRequestEEES1_v Line | Count | Source | 188 | 5 | static PerRequestCache makeEmpty() { | 189 | 5 | using Map = | 190 | 5 | llvm::DenseMap<RequestKey<Request>, | 191 | 5 | typename Request::OutputType>; | 192 | 5 | return PerRequestCache(new Map(), | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 5 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_34TypeCheckObjCImplementationRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_22ApplyAccessNoteRequestEEES1_v Line | Count | Source | 188 | 13 | static PerRequestCache makeEmpty() { | 189 | 13 | using Map = | 190 | 13 | llvm::DenseMap<RequestKey<Request>, | 191 | 13 | typename Request::OutputType>; | 192 | 13 | return PerRequestCache(new Map(), | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 13 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30ExternalMacroDefinitionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25CompilerPluginLoadRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_18PatternTypeRequestEEES1_v Line | Count | Source | 188 | 5 | static PerRequestCache makeEmpty() { | 189 | 5 | using Map = | 190 | 5 | llvm::DenseMap<RequestKey<Request>, | 191 | 5 | typename Request::OutputType>; | 192 | 5 | return PerRequestCache(new Map(), | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 5 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_24CustomAttrNominalRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25PreCheckReturnStmtRequestEEES1_v Line | Count | Source | 188 | 7 | static PerRequestCache makeEmpty() { | 189 | 7 | using Map = | 190 | 7 | llvm::DenseMap<RequestKey<Request>, | 191 | 7 | typename Request::OutputType>; | 192 | 7 | return PerRequestCache(new Map(), | 193 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 7 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_32PropertyWrapperLValuenessRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_20ExpandAccessorMacrosEEES1_v Line | Count | Source | 188 | 5 | static PerRequestCache makeEmpty() { | 189 | 5 | using Map = | 190 | 5 | llvm::DenseMap<RequestKey<Request>, | 191 | 5 | typename Request::OutputType>; | 192 | 5 | return PerRequestCache(new Map(), | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 5 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_49CheckInconsistentImplementationOnlyImportsRequestEEES1_v Line | Count | Source | 188 | 13 | static PerRequestCache makeEmpty() { | 189 | 13 | using Map = | 190 | 13 | llvm::DenseMap<RequestKey<Request>, | 191 | 13 | typename Request::OutputType>; | 192 | 13 | return PerRequestCache(new Map(), | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 13 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_38CheckInconsistentSPIOnlyImportsRequestEEES1_v Line | Count | Source | 188 | 13 | static PerRequestCache makeEmpty() { | 189 | 13 | using Map = | 190 | 13 | llvm::DenseMap<RequestKey<Request>, | 191 | 13 | typename Request::OutputType>; | 192 | 13 | return PerRequestCache(new Map(), | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 13 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_36CheckInconsistentAccessLevelOnImportEEES1_v Line | Count | Source | 188 | 13 | static PerRequestCache makeEmpty() { | 189 | 13 | using Map = | 190 | 13 | llvm::DenseMap<RequestKey<Request>, | 191 | 13 | typename Request::OutputType>; | 192 | 13 | return PerRequestCache(new Map(), | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 13 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_41CheckInconsistentWeakLinkedImportsRequestEEES1_v Line | Count | Source | 188 | 13 | static PerRequestCache makeEmpty() { | 189 | 13 | using Map = | 190 | 13 | llvm::DenseMap<RequestKey<Request>, | 191 | 13 | typename Request::OutputType>; | 192 | 13 | return PerRequestCache(new Map(), | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 13 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31InferredGenericSignatureRequestEEES1_v Line | Count | Source | 188 | 9 | static PerRequestCache makeEmpty() { | 189 | 9 | using Map = | 190 | 9 | llvm::DenseMap<RequestKey<Request>, | 191 | 9 | typename Request::OutputType>; | 192 | 9 | return PerRequestCache(new Map(), | 193 | 9 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 9 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_17HasStorageRequestEEES1_v Line | Count | Source | 188 | 13 | static PerRequestCache makeEmpty() { | 189 | 13 | using Map = | 190 | 13 | llvm::DenseMap<RequestKey<Request>, | 191 | 13 | typename Request::OutputType>; | 192 | 13 | return PerRequestCache(new Map(), | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 13 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26LocalDiscriminatorsRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_19ExtendedTypeRequestEEES1_v Line | Count | Source | 188 | 14 | static PerRequestCache makeEmpty() { | 189 | 14 | using Map = | 190 | 14 | llvm::DenseMap<RequestKey<Request>, | 191 | 14 | typename Request::OutputType>; | 192 | 14 | return PerRequestCache(new Map(), | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 14 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_24ResolveMacroConformancesEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30TypeEraserHasViableInitRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31SpecializeAttrTargetDeclRequestEEES1_v Line | Count | Source | 188 | 1 | static PerRequestCache makeEmpty() { | 189 | 1 | using Map = | 190 | 1 | llvm::DenseMap<RequestKey<Request>, | 191 | 1 | typename Request::OutputType>; | 192 | 1 | return PerRequestCache(new Map(), | 193 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 1 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_33DerivativeAttrOriginalDeclRequestEEES1_v Line | Count | Source | 188 | 2 | static PerRequestCache makeEmpty() { | 189 | 2 | using Map = | 190 | 2 | llvm::DenseMap<RequestKey<Request>, | 191 | 2 | typename Request::OutputType>; | 192 | 2 | return PerRequestCache(new Map(), | 193 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 2 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_29ImplementsAttrProtocolRequestEEES1_v Line | Count | Source | 188 | 5 | static PerRequestCache makeEmpty() { | 189 | 5 | using Map = | 190 | 5 | llvm::DenseMap<RequestKey<Request>, | 191 | 5 | typename Request::OutputType>; | 192 | 5 | return PerRequestCache(new Map(), | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 5 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_38InitAccessorReferencedVariablesRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_33SemanticAvailableRangeAttrRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30SemanticUnavailableAttrRequestEEES1_v Line | Count | Source | 188 | 5 | static PerRequestCache makeEmpty() { | 189 | 5 | using Map = | 190 | 5 | llvm::DenseMap<RequestKey<Request>, | 191 | 5 | typename Request::OutputType>; | 192 | 5 | return PerRequestCache(new Map(), | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 5 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_27ExpandMemberAttributeMacrosEEES1_v Line | Count | Source | 188 | 14 | static PerRequestCache makeEmpty() { | 189 | 14 | using Map = | 190 | 14 | llvm::DenseMap<RequestKey<Request>, | 191 | 14 | typename Request::OutputType>; | 192 | 14 | return PerRequestCache(new Map(), | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 14 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_22ExpandPeerMacroRequestEEES1_v Line | Count | Source | 188 | 14 | static PerRequestCache makeEmpty() { | 189 | 14 | using Map = | 190 | 14 | llvm::DenseMap<RequestKey<Request>, | 191 | 14 | typename Request::OutputType>; | 192 | 14 | return PerRequestCache(new Map(), | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 14 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31ExpandMacroExpansionDeclRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_19ResolveMacroRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_27GlobalActorAttributeRequestEEES1_v Line | Count | Source | 188 | 12 | static PerRequestCache makeEmpty() { | 189 | 12 | using Map = | 190 | 12 | llvm::DenseMap<RequestKey<Request>, | 191 | 12 | typename Request::OutputType>; | 192 | 12 | return PerRequestCache(new Map(), | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 12 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ScopedImportLookupRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30IsABICompatibleOverrideRequestEEES1_v Line | Count | Source | 188 | 1 | static PerRequestCache makeEmpty() { | 189 | 1 | using Map = | 190 | 1 | llvm::DenseMap<RequestKey<Request>, | 191 | 1 | typename Request::OutputType>; | 192 | 1 | return PerRequestCache(new Map(), | 193 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_23OpaqueResultTypeRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30DynamicallyReplacedDeclRequestEEES1_v Line | Count | Source | 188 | 12 | static PerRequestCache makeEmpty() { | 189 | 12 | using Map = | 190 | 12 | llvm::DenseMap<RequestKey<Request>, | 191 | 12 | typename Request::OutputType>; | 192 | 12 | return PerRequestCache(new Map(), | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 12 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_23StoredPropertiesRequestEEES1_v Line | Count | Source | 188 | 11 | static PerRequestCache makeEmpty() { | 189 | 11 | using Map = | 190 | 11 | llvm::DenseMap<RequestKey<Request>, | 191 | 11 | typename Request::OutputType>; | 192 | 11 | return PerRequestCache(new Map(), | 193 | 11 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 11 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_29InitAccessorPropertiesRequestEEES1_v Line | Count | Source | 188 | 5 | static PerRequestCache makeEmpty() { | 189 | 5 | using Map = | 190 | 5 | llvm::DenseMap<RequestKey<Request>, | 191 | 5 | typename Request::OutputType>; | 192 | 5 | return PerRequestCache(new Map(), | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 5 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31MemberwiseInitPropertiesRequestEEES1_v Line | Count | Source | 188 | 5 | static PerRequestCache makeEmpty() { | 189 | 5 | using Map = | 190 | 5 | llvm::DenseMap<RequestKey<Request>, | 191 | 5 | typename Request::OutputType>; | 192 | 5 | return PerRequestCache(new Map(), | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 5 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_40StoredPropertiesAndMissingMembersRequestEEES1_v Line | Count | Source | 188 | 1 | static PerRequestCache makeEmpty() { | 189 | 1 | using Map = | 190 | 1 | llvm::DenseMap<RequestKey<Request>, | 191 | 1 | typename Request::OutputType>; | 192 | 1 | return PerRequestCache(new Map(), | 193 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30PropertyWrapperTypeInfoRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_14IsActorRequestEEES1_v Line | Count | Source | 188 | 9 | static PerRequestCache makeEmpty() { | 189 | 9 | using Map = | 190 | 9 | llvm::DenseMap<RequestKey<Request>, | 191 | 9 | typename Request::OutputType>; | 192 | 9 | return PerRequestCache(new Map(), | 193 | 9 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 9 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25IsDistributedActorRequestEEES1_v Line | Count | Source | 188 | 13 | static PerRequestCache makeEmpty() { | 189 | 13 | using Map = | 190 | 13 | llvm::DenseMap<RequestKey<Request>, | 191 | 13 | typename Request::OutputType>; | 192 | 13 | return PerRequestCache(new Map(), | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 13 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_21StructuralTypeRequestEEES1_v Line | Count | Source | 188 | 14 | static PerRequestCache makeEmpty() { | 189 | 14 | using Map = | 190 | 14 | llvm::DenseMap<RequestKey<Request>, | 191 | 14 | typename Request::OutputType>; | 192 | 14 | return PerRequestCache(new Map(), | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 14 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_18EnumRawTypeRequestEEES1_v Line | Count | Source | 188 | 10 | static PerRequestCache makeEmpty() { | 189 | 10 | using Map = | 190 | 10 | llvm::DenseMap<RequestKey<Request>, | 191 | 10 | typename Request::OutputType>; | 192 | 10 | return PerRequestCache(new Map(), | 193 | 10 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 10 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_24HasMemberwiseInitRequestEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31SynthesizeMemberwiseInitRequestEEES1_v Line | Count | Source | 188 | 3 | static PerRequestCache makeEmpty() { | 189 | 3 | using Map = | 190 | 3 | llvm::DenseMap<RequestKey<Request>, | 191 | 3 | typename Request::OutputType>; | 192 | 3 | return PerRequestCache(new Map(), | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 3 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_37ResolveEffectiveMemberwiseInitRequestEEES1_v Line | Count | Source | 188 | 3 | static PerRequestCache makeEmpty() { | 189 | 3 | using Map = | 190 | 3 | llvm::DenseMap<RequestKey<Request>, | 191 | 3 | typename Request::OutputType>; | 192 | 3 | return PerRequestCache(new Map(), | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 3 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_21HasDefaultInitRequestEEES1_v Line | Count | Source | 188 | 6 | static PerRequestCache makeEmpty() { | 189 | 6 | using Map = | 190 | 6 | llvm::DenseMap<RequestKey<Request>, | 191 | 6 | typename Request::OutputType>; | 192 | 6 | return PerRequestCache(new Map(), | 193 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 6 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28SynthesizeDefaultInitRequestEEES1_v Line | Count | Source | 188 | 3 | static PerRequestCache makeEmpty() { | 189 | 3 | using Map = | 190 | 3 | llvm::DenseMap<RequestKey<Request>, | 191 | 3 | typename Request::OutputType>; | 192 | 3 | return PerRequestCache(new Map(), | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 3 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26GlobalActorInstanceRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_21IsDefaultActorRequestEEES1_v Line | Count | Source | 188 | 1 | static PerRequestCache makeEmpty() { | 189 | 1 | using Map = | 190 | 1 | llvm::DenseMap<RequestKey<Request>, | 191 | 1 | typename Request::OutputType>; | 192 | 1 | return PerRequestCache(new Map(), | 193 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 1 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ClassAncestryFlagsRequestEEES1_v Line | Count | Source | 188 | 3 | static PerRequestCache makeEmpty() { | 189 | 3 | using Map = | 190 | 3 | llvm::DenseMap<RequestKey<Request>, | 191 | 3 | typename Request::OutputType>; | 192 | 3 | return PerRequestCache(new Map(), | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 3 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26HasCircularRawValueRequestEEES1_v Line | Count | Source | 188 | 1 | static PerRequestCache makeEmpty() { | 189 | 1 | using Map = | 190 | 1 | llvm::DenseMap<RequestKey<Request>, | 191 | 1 | typename Request::OutputType>; | 192 | 1 | return PerRequestCache(new Map(), | 193 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 1 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_29PrimaryAssociatedTypesRequestEEES1_v Line | Count | Source | 188 | 2 | static PerRequestCache makeEmpty() { | 189 | 2 | using Map = | 190 | 2 | llvm::DenseMap<RequestKey<Request>, | 191 | 2 | typename Request::OutputType>; | 192 | 2 | return PerRequestCache(new Map(), | 193 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 2 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_29StructuralRequirementsRequestEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28TypeAliasRequirementsRequestEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_27ProtocolDependenciesRequestEEES1_v Line | Count | Source | 188 | 12 | static PerRequestCache makeEmpty() { | 189 | 12 | using Map = | 190 | 12 | llvm::DenseMap<RequestKey<Request>, | 191 | 12 | typename Request::OutputType>; | 192 | 12 | return PerRequestCache(new Map(), | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 12 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_36HasCircularInheritedProtocolsRequestEEES1_v Line | Count | Source | 188 | 3 | static PerRequestCache makeEmpty() { | 189 | 3 | using Map = | 190 | 3 | llvm::DenseMap<RequestKey<Request>, | 191 | 3 | typename Request::OutputType>; | 192 | 3 | return PerRequestCache(new Map(), | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 3 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_22HasInitAccessorRequestEEES1_v Line | Count | Source | 188 | 12 | static PerRequestCache makeEmpty() { | 189 | 12 | using Map = | 190 | 12 | llvm::DenseMap<RequestKey<Request>, | 191 | 12 | typename Request::OutputType>; | 192 | 12 | return PerRequestCache(new Map(), | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 12 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_27DefaultInitializerIsolationEEES1_v Line | Count | Source | 188 | 14 | static PerRequestCache makeEmpty() { | 189 | 14 | using Map = | 190 | 14 | llvm::DenseMap<RequestKey<Request>, | 191 | 14 | typename Request::OutputType>; | 192 | 14 | return PerRequestCache(new Map(), | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 14 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31AttachedPropertyWrappersRequestEEES1_v Line | Count | Source | 188 | 13 | static PerRequestCache makeEmpty() { | 189 | 13 | using Map = | 190 | 13 | llvm::DenseMap<RequestKey<Request>, | 191 | 13 | typename Request::OutputType>; | 192 | 13 | return PerRequestCache(new Map(), | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 13 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_34AttachedPropertyWrapperTypeRequestEEES1_v Line | Count | Source | 188 | 3 | static PerRequestCache makeEmpty() { | 189 | 3 | using Map = | 190 | 3 | llvm::DenseMap<RequestKey<Request>, | 191 | 3 | typename Request::OutputType>; | 192 | 3 | return PerRequestCache(new Map(), | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 3 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_41PropertyWrapperBackingPropertyTypeRequestEEES1_v Line | Count | Source | 188 | 3 | static PerRequestCache makeEmpty() { | 189 | 3 | using Map = | 190 | 3 | llvm::DenseMap<RequestKey<Request>, | 191 | 3 | typename Request::OutputType>; | 192 | 3 | return PerRequestCache(new Map(), | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 3 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_40PropertyWrapperAuxiliaryVariablesRequestEEES1_v Line | Count | Source | 188 | 5 | static PerRequestCache makeEmpty() { | 189 | 5 | using Map = | 190 | 5 | llvm::DenseMap<RequestKey<Request>, | 191 | 5 | typename Request::OutputType>; | 192 | 5 | return PerRequestCache(new Map(), | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 5 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_37PropertyWrapperInitializerInfoRequestEEES1_v Line | Count | Source | 188 | 5 | static PerRequestCache makeEmpty() { | 189 | 5 | using Map = | 190 | 5 | llvm::DenseMap<RequestKey<Request>, | 191 | 5 | typename Request::OutputType>; | 192 | 5 | return PerRequestCache(new Map(), | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 5 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_32PropertyWrapperMutabilityRequestEEES1_v Line | Count | Source | 188 | 6 | static PerRequestCache makeEmpty() { | 189 | 6 | using Map = | 190 | 6 | llvm::DenseMap<RequestKey<Request>, | 191 | 6 | typename Request::OutputType>; | 192 | 6 | return PerRequestCache(new Map(), | 193 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 6 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26LazyStoragePropertyRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_24ResultBuilderTypeRequestEEES1_v Line | Count | Source | 188 | 8 | static PerRequestCache makeEmpty() { | 189 | 8 | using Map = | 190 | 8 | llvm::DenseMap<RequestKey<Request>, | 191 | 8 | typename Request::OutputType>; | 192 | 8 | return PerRequestCache(new Map(), | 193 | 8 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 8 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28AttachedResultBuilderRequestEEES1_v Line | Count | Source | 188 | 11 | static PerRequestCache makeEmpty() { | 189 | 11 | using Map = | 190 | 11 | llvm::DenseMap<RequestKey<Request>, | 191 | 11 | typename Request::OutputType>; | 192 | 11 | return PerRequestCache(new Map(), | 193 | 11 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 11 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_18RenamedDeclRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_23FunctionOperatorRequestEEES1_v Line | Count | Source | 188 | 9 | static PerRequestCache makeEmpty() { | 189 | 9 | using Map = | 190 | 9 | llvm::DenseMap<RequestKey<Request>, | 191 | 9 | typename Request::OutputType>; | 192 | 9 | return PerRequestCache(new Map(), | 193 | 9 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 9 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_19SimpleDidSetRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_15InitKindRequestEEES1_v Line | Count | Source | 188 | 13 | static PerRequestCache makeEmpty() { | 189 | 13 | using Map = | 190 | 13 | llvm::DenseMap<RequestKey<Request>, | 191 | 13 | typename Request::OutputType>; | 192 | 13 | return PerRequestCache(new Map(), | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 13 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_19BodyInitKindRequestEEES1_v Line | Count | Source | 188 | 3 | static PerRequestCache makeEmpty() { | 189 | 3 | using Map = | 190 | 3 | llvm::DenseMap<RequestKey<Request>, | 191 | 3 | typename Request::OutputType>; | 192 | 3 | return PerRequestCache(new Map(), | 193 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 3 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30OperatorPrecedenceGroupRequestEEES1_v Line | Count | Source | 188 | 9 | static PerRequestCache makeEmpty() { | 189 | 9 | using Map = | 190 | 9 | llvm::DenseMap<RequestKey<Request>, | 191 | 9 | typename Request::OutputType>; | 192 | 9 | return PerRequestCache(new Map(), | 193 | 9 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 9 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_21ActorIsolationRequestEEES1_v Line | Count | Source | 188 | 12 | static PerRequestCache makeEmpty() { | 189 | 12 | using Map = | 190 | 12 | llvm::DenseMap<RequestKey<Request>, | 191 | 12 | typename Request::OutputType>; | 192 | 12 | return PerRequestCache(new Map(), | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 12 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31ExpandMacroExpansionExprRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_22MacroDefinitionRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26FragileFunctionKindRequestEEES1_v Line | Count | Source | 188 | 12 | static PerRequestCache makeEmpty() { | 189 | 12 | using Map = | 190 | 12 | llvm::DenseMap<RequestKey<Request>, | 191 | 12 | typename Request::OutputType>; | 192 | 12 | return PerRequestCache(new Map(), | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 12 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_19ParseMembersRequestEEES1_v Line | Count | Source | 188 | 8 | static PerRequestCache makeEmpty() { | 189 | 8 | using Map = | 190 | 8 | llvm::DenseMap<RequestKey<Request>, | 191 | 8 | typename Request::OutputType>; | 192 | 8 | return PerRequestCache(new Map(), | 193 | 8 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 8 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_17ABIMembersRequestEEES1_v Line | Count | Source | 188 | 7 | static PerRequestCache makeEmpty() { | 189 | 7 | using Map = | 190 | 7 | llvm::DenseMap<RequestKey<Request>, | 191 | 7 | typename Request::OutputType>; | 192 | 7 | return PerRequestCache(new Map(), | 193 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 7 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_17AllMembersRequestEEES1_v Line | Count | Source | 188 | 5 | static PerRequestCache makeEmpty() { | 189 | 5 | using Map = | 190 | 5 | llvm::DenseMap<RequestKey<Request>, | 191 | 5 | typename Request::OutputType>; | 192 | 5 | return PerRequestCache(new Map(), | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 5 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_48GetDistributedActorArgumentDecodingMethodRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_43GetDistributedActorInvocationDecoderRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26GetDistributedThunkRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_40GetDistributedActorSystemPropertyRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_36GetDistributedActorIDPropertyRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_27SemanticBriefCommentRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_36PolymorphicEffectRequirementsRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28PolymorphicEffectKindRequestEEES1_v Line | Count | Source | 188 | 7 | static PerRequestCache makeEmpty() { | 189 | 7 | using Map = | 190 | 7 | llvm::DenseMap<RequestKey<Request>, | 191 | 7 | typename Request::OutputType>; | 192 | 7 | return PerRequestCache(new Map(), | 193 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 7 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_27ConformanceHasEffectRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_21ClosureEffectsRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_31AbstractGenericSignatureRequestEEES1_v Line | Count | Source | 188 | 7 | static PerRequestCache makeEmpty() { | 189 | 7 | using Map = | 190 | 7 | llvm::DenseMap<RequestKey<Request>, | 191 | 7 | typename Request::OutputType>; | 192 | 7 | return PerRequestCache(new Map(), | 193 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 7 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_22IsNonUserModuleRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28ModuleImplicitImportsRequestEEES1_v Line | Count | Source | 188 | 14 | static PerRequestCache makeEmpty() { | 189 | 14 | using Map = | 190 | 14 | llvm::DenseMap<RequestKey<Request>, | 191 | 14 | typename Request::OutputType>; | 192 | 14 | return PerRequestCache(new Map(), | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 14 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25PrimarySourceFilesRequestEEES1_v Line | Count | Source | 188 | 12 | static PerRequestCache makeEmpty() { | 189 | 12 | using Map = | 190 | 12 | llvm::DenseMap<RequestKey<Request>, | 191 | 12 | typename Request::OutputType>; | 192 | 12 | return PerRequestCache(new Map(), | 193 | 12 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 12 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26MangleLocalTypeDeclRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_21ExpandExtensionMacrosEEES1_v Line | Count | Source | 188 | 13 | static PerRequestCache makeEmpty() { | 189 | 13 | using Map = | 190 | 13 | llvm::DenseMap<RequestKey<Request>, | 191 | 13 | typename Request::OutputType>; | 192 | 13 | return PerRequestCache(new Map(), | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 13 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26GetImplicitSendableRequestEEES1_v Line | Count | Source | 188 | 8 | static PerRequestCache makeEmpty() { | 189 | 8 | using Map = | 190 | 8 | llvm::DenseMap<RequestKey<Request>, | 191 | 8 | typename Request::OutputType>; | 192 | 8 | return PerRequestCache(new Map(), | 193 | 8 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 8 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_41GetDistributedActorImplicitCodableRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_16SPIGroupsRequestEEES1_v Line | Count | Source | 188 | 13 | static PerRequestCache makeEmpty() { | 189 | 13 | using Map = | 190 | 13 | llvm::DenseMap<RequestKey<Request>, | 191 | 13 | typename Request::OutputType>; | 192 | 13 | return PerRequestCache(new Map(), | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 13 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ModuleLibraryLevelRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ParseTopLevelDeclsRequestEEES1_v Line | Count | Source | 188 | 14 | static PerRequestCache makeEmpty() { | 189 | 14 | using Map = | 190 | 14 | llvm::DenseMap<RequestKey<Request>, | 191 | 14 | typename Request::OutputType>; | 192 | 14 | return PerRequestCache(new Map(), | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 14 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_25ExportedSourceFileRequestEEES1_v Line | Count | Source | 188 | 14 | static PerRequestCache makeEmpty() { | 189 | 14 | using Map = | 190 | 14 | llvm::DenseMap<RequestKey<Request>, | 191 | 14 | typename Request::OutputType>; | 192 | 14 | return PerRequestCache(new Map(), | 193 | 14 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 14 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_22GetSourceFileAsyncNodeEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_35ExpandSynthesizedMemberMacroRequestEEES1_v Line | Count | Source | 188 | 7 | static PerRequestCache makeEmpty() { | 189 | 7 | using Map = | 190 | 7 | llvm::DenseMap<RequestKey<Request>, | 191 | 7 | typename Request::OutputType>; | 192 | 7 | return PerRequestCache(new Map(), | 193 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 7 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_40PotentialMacroExpansionsInContextRequestEEES1_v Line | Count | Source | 188 | 13 | static PerRequestCache makeEmpty() { | 189 | 13 | using Map = | 190 | 13 | llvm::DenseMap<RequestKey<Request>, | 191 | 13 | typename Request::OutputType>; | 192 | 13 | return PerRequestCache(new Map(), | 193 | 13 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 13 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30IsCallAsFunctionNominalRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_38HasDynamicMemberLookupAttributeRequestEEES1_v Line | Count | Source | 188 | 5 | static PerRequestCache makeEmpty() { | 189 | 5 | using Map = | 190 | 5 | llvm::DenseMap<RequestKey<Request>, | 191 | 5 | typename Request::OutputType>; | 192 | 5 | return PerRequestCache(new Map(), | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 5 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_34HasDynamicCallableAttributeRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_26LookupInfixOperatorRequestEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_27LookupPrefixOperatorRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28LookupPostfixOperatorRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_28LookupPrecedenceGroupRequestEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_30ConditionalRequirementsRequestEEES1_v Line | Count | Source | 188 | 10 | static PerRequestCache makeEmpty() { | 189 | 10 | using Map = | 190 | 10 | llvm::DenseMap<RequestKey<Request>, | 191 | 10 | typename Request::OutputType>; | 192 | 10 | return PerRequestCache(new Map(), | 193 | 10 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 10 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_37LookupAllConformancesInContextRequestEEES1_v Line | Count | Source | 188 | 8 | static PerRequestCache makeEmpty() { | 189 | 8 | using Map = | 190 | 8 | llvm::DenseMap<RequestKey<Request>, | 191 | 8 | typename Request::OutputType>; | 192 | 8 | return PerRequestCache(new Map(), | 193 | 8 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 8 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_17RawCommentRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_24IsSingleValueStmtRequestEEES1_v Line | Count | Source | 188 | 7 | static PerRequestCache makeEmpty() { | 189 | 7 | using Map = | 190 | 7 | llvm::DenseMap<RequestKey<Request>, | 191 | 7 | typename Request::OutputType>; | 192 | 7 | return PerRequestCache(new Map(), | 193 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 7 | } |
Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_18BreakTargetRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_21ContinueTargetRequestEEES1_v _ZN5swift9evaluator15PerRequestCache9makeEmptyINS_18RequirementRequestEEES1_v Line | Count | Source | 188 | 4 | static PerRequestCache makeEmpty() { | 189 | 4 | using Map = | 190 | 4 | llvm::DenseMap<RequestKey<Request>, | 191 | 4 | typename Request::OutputType>; | 192 | 4 | return PerRequestCache(new Map(), | 193 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 4 | } |
_ZN5swift9evaluator15PerRequestCache9makeEmptyINS_40ExpandChildTypeRefinementContextsRequestEEES1_v Line | Count | Source | 188 | 5 | static PerRequestCache makeEmpty() { | 189 | 5 | using Map = | 190 | 5 | llvm::DenseMap<RequestKey<Request>, | 191 | 5 | typename Request::OutputType>; | 192 | 5 | return PerRequestCache(new Map(), | 193 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 194 | 5 | } |
|
195 | | |
196 | | template <typename Request> |
197 | | llvm::DenseMap<RequestKey<Request>, |
198 | | typename Request::OutputType> * |
199 | 168k | get() const { |
200 | 168k | using Map = |
201 | 168k | llvm::DenseMap<RequestKey<Request>, |
202 | 168k | typename Request::OutputType>; |
203 | 168k | assert(Storage); |
204 | 0 | return static_cast<Map *>(Storage); |
205 | 168k | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22SymbolSourceMapRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_20USRGenerationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_18RenamedDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Frontend.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24IDEInspectionFileRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ExtendedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ConstExtract.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24ConstantValueInfoRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: GenClass.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: GenDistributed.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: GenDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: GenEnum.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: GenHeap.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: GenMeta.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: IRGen.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22SymbolSourceMapRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Common.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28TangentStoredPropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 16 | get() const { | 200 | 16 | using Map = | 201 | 16 | llvm::DenseMap<RequestKey<Request>, | 202 | 16 | typename Request::OutputType>; | 203 | 16 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 16 | } |
Unexecuted instantiation: IDERequests.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28ProvideDefaultImplForRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26ResolveProtocolNameRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28ProvideDefaultImplForRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_29CollectOverriddenDeclsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_23IsDeclApplicableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24TypeRelationCheckRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_15InitKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_23OpaqueResultTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26LazyStoragePropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_40PropertyWrapperAuxiliaryVariablesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_37PropertyWrapperInitializerInfoRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_41PropertyWrapperBackingPropertyTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27DefaultInitializerIsolationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_23FunctionOperatorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30OperatorPrecedenceGroupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ExtendedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22MacroDefinitionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_17HasStorageRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Serialization.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26MangleLocalTypeDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: BuilderTransform.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28PreCheckResultBuilderRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: CSApply.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31ExpandMacroExpansionExprRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv CSRanking.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_32CompareDeclSpecializationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 70 | get() const { | 200 | 70 | using Map = | 201 | 70 | llvm::DenseMap<RequestKey<Request>, | 202 | 70 | typename Request::OutputType>; | 203 | 70 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 70 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_29EnumElementExprPatternRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: CSSimplify.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_34HasDynamicCallableAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv CSStep.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25IsDeclRefinementOfRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 179 | get() const { | 200 | 179 | using Map = | 201 | 179 | llvm::DenseMap<RequestKey<Request>, | 202 | 179 | typename Request::OutputType>; | 203 | 179 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 179 | } |
CodeSynthesis.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_35HasUserDefinedDesignatedInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 109 | get() const { | 200 | 109 | using Map = | 201 | 109 | llvm::DenseMap<RequestKey<Request>, | 202 | 109 | typename Request::OutputType>; | 203 | 109 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 109 | } |
CodeSynthesis.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_44AreAllStoredPropertiesDefaultInitableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 51 | get() const { | 200 | 51 | using Map = | 201 | 51 | llvm::DenseMap<RequestKey<Request>, | 202 | 51 | typename Request::OutputType>; | 203 | 51 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 51 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21ClosureEffectsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ConstraintSystem.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31ClosureHasExplicitResultRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv DerivedConformanceDifferentiable.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28TangentStoredPropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 4 | get() const { | 200 | 4 | using Map = | 201 | 4 | llvm::DenseMap<RequestKey<Request>, | 202 | 4 | typename Request::OutputType>; | 203 | 4 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 4 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_23IsDeclApplicableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: PreCheckExpr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25PreCheckReturnStmtRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_29SynthesizeMainFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24ResolveMacroConformancesEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31InferredGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27GlobalActorAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ExtendedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27GlobalActorAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_35DistributedModuleIsAvailableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31CheckDistributedFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv TypeCheckDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30ValidatePrecedenceGroupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 39 | get() const { | 200 | 39 | using Map = | 201 | 39 | llvm::DenseMap<RequestKey<Request>, | 202 | 39 | typename Request::OutputType>; | 203 | 39 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 39 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_35ExpandSynthesizedMemberMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv TypeCheckDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_29SynthesizeMainFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 57 | get() const { | 200 | 57 | using Map = | 201 | 57 | llvm::DenseMap<RequestKey<Request>, | 202 | 57 | typename Request::OutputType>; | 203 | 57 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 57 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_36HasCircularInheritedProtocolsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26HasCircularRawValueRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30IsABICompatibleOverrideRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_34TypeCheckObjCImplementationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30ExternalMacroDefinitionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21ExpandExtensionMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22ApplyAccessNoteRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 2.45k | get() const { | 200 | 2.45k | using Map = | 201 | 2.45k | llvm::DenseMap<RequestKey<Request>, | 202 | 2.45k | typename Request::OutputType>; | 203 | 2.45k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 2.45k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ResolveMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckGeneric.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31InferredGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30ExternalMacroDefinitionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25CompilerPluginLoadRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31ExpandMacroExpansionDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv TypeCheckPattern.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_18PatternTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 222 | get() const { | 200 | 222 | using Map = | 201 | 222 | llvm::DenseMap<RequestKey<Request>, | 202 | 222 | typename Request::OutputType>; | 203 | 222 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 222 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31AttachedPropertyWrappersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_40PotentialMacroExpansionsInContextRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv TypeCheckStmt.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25PreCheckReturnStmtRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 186 | get() const { | 200 | 186 | using Map = | 201 | 186 | llvm::DenseMap<RequestKey<Request>, | 202 | 186 | typename Request::OutputType>; | 203 | 186 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 186 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26LocalDiscriminatorsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_35ExpandSynthesizedMemberMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22ExpandPeerMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_32PropertyWrapperLValuenessRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv TypeCheckStorage.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_20ExpandAccessorMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 204 | get() const { | 200 | 204 | using Map = | 201 | 204 | llvm::DenseMap<RequestKey<Request>, | 202 | 204 | typename Request::OutputType>; | 203 | 204 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 204 | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_40PropertyWrapperAuxiliaryVariablesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv TypeChecker.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_49CheckInconsistentImplementationOnlyImportsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 39 | get() const { | 200 | 39 | using Map = | 201 | 39 | llvm::DenseMap<RequestKey<Request>, | 202 | 39 | typename Request::OutputType>; | 203 | 39 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 39 | } |
TypeChecker.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_38CheckInconsistentSPIOnlyImportsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 39 | get() const { | 200 | 39 | using Map = | 201 | 39 | llvm::DenseMap<RequestKey<Request>, | 202 | 39 | typename Request::OutputType>; | 203 | 39 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 39 | } |
TypeChecker.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_36CheckInconsistentAccessLevelOnImportEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 39 | get() const { | 200 | 39 | using Map = | 201 | 39 | llvm::DenseMap<RequestKey<Request>, | 202 | 39 | typename Request::OutputType>; | 203 | 39 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 39 | } |
TypeChecker.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_41CheckInconsistentWeakLinkedImportsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 39 | get() const { | 200 | 39 | using Map = | 201 | 39 | llvm::DenseMap<RequestKey<Request>, | 202 | 39 | typename Request::OutputType>; | 203 | 39 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 39 | } |
TypeChecker.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31InferredGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 228 | get() const { | 200 | 228 | using Map = | 201 | 228 | llvm::DenseMap<RequestKey<Request>, | 202 | 228 | typename Request::OutputType>; | 203 | 228 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 228 | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv ClangImporter.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_17HasStorageRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 561 | get() const { | 200 | 561 | using Map = | 201 | 561 | llvm::DenseMap<RequestKey<Request>, | 202 | 561 | typename Request::OutputType>; | 203 | 561 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 561 | } |
Unexecuted instantiation: ImportDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_15InitKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_17HasStorageRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ExtendedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ParseDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ParseMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Parser.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26LocalDiscriminatorsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv ASTContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ExtendedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 1.64k | get() const { | 200 | 1.64k | using Map = | 201 | 1.64k | llvm::DenseMap<RequestKey<Request>, | 202 | 1.64k | typename Request::OutputType>; | 203 | 1.64k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 1.64k | } |
Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24ResolveMacroConformancesEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30TypeEraserHasViableInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Attr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31SpecializeAttrTargetDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 48 | get() const { | 200 | 48 | using Map = | 201 | 48 | llvm::DenseMap<RequestKey<Request>, | 202 | 48 | typename Request::OutputType>; | 203 | 48 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 48 | } |
Attr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_33DerivativeAttrOriginalDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 60 | get() const { | 200 | 60 | using Map = | 201 | 60 | llvm::DenseMap<RequestKey<Request>, | 202 | 60 | typename Request::OutputType>; | 203 | 60 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 60 | } |
Attr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_29ImplementsAttrProtocolRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 21 | get() const { | 200 | 21 | using Map = | 201 | 21 | llvm::DenseMap<RequestKey<Request>, | 202 | 21 | typename Request::OutputType>; | 203 | 21 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 21 | } |
Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_38InitAccessorReferencedVariablesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Availability.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_33SemanticAvailableRangeAttrRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Availability.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30SemanticUnavailableAttrRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 1.09k | get() const { | 200 | 1.09k | using Map = | 201 | 1.09k | llvm::DenseMap<RequestKey<Request>, | 202 | 1.09k | typename Request::OutputType>; | 203 | 1.09k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 1.09k | } |
Unexecuted instantiation: CASTBridging.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ParseMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27ExpandMemberAttributeMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 23.2k | get() const { | 200 | 23.2k | using Map = | 201 | 23.2k | llvm::DenseMap<RequestKey<Request>, | 202 | 23.2k | typename Request::OutputType>; | 203 | 23.2k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 23.2k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22ExpandPeerMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 6.86k | get() const { | 200 | 6.86k | using Map = | 201 | 6.86k | llvm::DenseMap<RequestKey<Request>, | 202 | 6.86k | typename Request::OutputType>; | 203 | 6.86k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 6.86k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31ExpandMacroExpansionDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ResolveMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27GlobalActorAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 13.1k | get() const { | 200 | 13.1k | using Map = | 201 | 13.1k | llvm::DenseMap<RequestKey<Request>, | 202 | 13.1k | typename Request::OutputType>; | 203 | 13.1k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 13.1k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25ScopedImportLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ExtendedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 102 | get() const { | 200 | 102 | using Map = | 201 | 102 | llvm::DenseMap<RequestKey<Request>, | 202 | 102 | typename Request::OutputType>; | 203 | 102 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 102 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30IsABICompatibleOverrideRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 63 | get() const { | 200 | 63 | using Map = | 201 | 63 | llvm::DenseMap<RequestKey<Request>, | 202 | 63 | typename Request::OutputType>; | 203 | 63 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 63 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26LocalDiscriminatorsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_23OpaqueResultTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30DynamicallyReplacedDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 3.94k | get() const { | 200 | 3.94k | using Map = | 201 | 3.94k | llvm::DenseMap<RequestKey<Request>, | 202 | 3.94k | typename Request::OutputType>; | 203 | 3.94k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 3.94k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_23StoredPropertiesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 20.5k | get() const { | 200 | 20.5k | using Map = | 201 | 20.5k | llvm::DenseMap<RequestKey<Request>, | 202 | 20.5k | typename Request::OutputType>; | 203 | 20.5k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 20.5k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_29InitAccessorPropertiesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 97 | get() const { | 200 | 97 | using Map = | 201 | 97 | llvm::DenseMap<RequestKey<Request>, | 202 | 97 | typename Request::OutputType>; | 203 | 97 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 97 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31MemberwiseInitPropertiesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 88 | get() const { | 200 | 88 | using Map = | 201 | 88 | llvm::DenseMap<RequestKey<Request>, | 202 | 88 | typename Request::OutputType>; | 203 | 88 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 88 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_40StoredPropertiesAndMissingMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 38 | get() const { | 200 | 38 | using Map = | 201 | 38 | llvm::DenseMap<RequestKey<Request>, | 202 | 38 | typename Request::OutputType>; | 203 | 38 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 38 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30PropertyWrapperTypeInfoRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_14IsActorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 9.90k | get() const { | 200 | 9.90k | using Map = | 201 | 9.90k | llvm::DenseMap<RequestKey<Request>, | 202 | 9.90k | typename Request::OutputType>; | 203 | 9.90k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 9.90k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25IsDistributedActorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 5.49k | get() const { | 200 | 5.49k | using Map = | 201 | 5.49k | llvm::DenseMap<RequestKey<Request>, | 202 | 5.49k | typename Request::OutputType>; | 203 | 5.49k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 5.49k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21StructuralTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 344 | get() const { | 200 | 344 | using Map = | 201 | 344 | llvm::DenseMap<RequestKey<Request>, | 202 | 344 | typename Request::OutputType>; | 203 | 344 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 344 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_18EnumRawTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 268 | get() const { | 200 | 268 | using Map = | 201 | 268 | llvm::DenseMap<RequestKey<Request>, | 202 | 268 | typename Request::OutputType>; | 203 | 268 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 268 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24HasMemberwiseInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 88 | get() const { | 200 | 88 | using Map = | 201 | 88 | llvm::DenseMap<RequestKey<Request>, | 202 | 88 | typename Request::OutputType>; | 203 | 88 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 88 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31SynthesizeMemberwiseInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 51 | get() const { | 200 | 51 | using Map = | 201 | 51 | llvm::DenseMap<RequestKey<Request>, | 202 | 51 | typename Request::OutputType>; | 203 | 51 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 51 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_37ResolveEffectiveMemberwiseInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 108 | get() const { | 200 | 108 | using Map = | 201 | 108 | llvm::DenseMap<RequestKey<Request>, | 202 | 108 | typename Request::OutputType>; | 203 | 108 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 108 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21HasDefaultInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 69 | get() const { | 200 | 69 | using Map = | 201 | 69 | llvm::DenseMap<RequestKey<Request>, | 202 | 69 | typename Request::OutputType>; | 203 | 69 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 69 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28SynthesizeDefaultInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 18 | get() const { | 200 | 18 | using Map = | 201 | 18 | llvm::DenseMap<RequestKey<Request>, | 202 | 18 | typename Request::OutputType>; | 203 | 18 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 18 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26GlobalActorInstanceRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21IsDefaultActorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 45 | get() const { | 200 | 45 | using Map = | 201 | 45 | llvm::DenseMap<RequestKey<Request>, | 202 | 45 | typename Request::OutputType>; | 203 | 45 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 45 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25ClassAncestryFlagsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 87 | get() const { | 200 | 87 | using Map = | 201 | 87 | llvm::DenseMap<RequestKey<Request>, | 202 | 87 | typename Request::OutputType>; | 203 | 87 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 87 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26HasCircularRawValueRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 6 | get() const { | 200 | 6 | using Map = | 201 | 6 | llvm::DenseMap<RequestKey<Request>, | 202 | 6 | typename Request::OutputType>; | 203 | 6 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 6 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_29PrimaryAssociatedTypesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 6 | get() const { | 200 | 6 | using Map = | 201 | 6 | llvm::DenseMap<RequestKey<Request>, | 202 | 6 | typename Request::OutputType>; | 203 | 6 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 6 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_29StructuralRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 25 | get() const { | 200 | 25 | using Map = | 201 | 25 | llvm::DenseMap<RequestKey<Request>, | 202 | 25 | typename Request::OutputType>; | 203 | 25 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 25 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28TypeAliasRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 15 | get() const { | 200 | 15 | using Map = | 201 | 15 | llvm::DenseMap<RequestKey<Request>, | 202 | 15 | typename Request::OutputType>; | 203 | 15 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 15 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27ProtocolDependenciesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 4.80k | get() const { | 200 | 4.80k | using Map = | 201 | 4.80k | llvm::DenseMap<RequestKey<Request>, | 202 | 4.80k | typename Request::OutputType>; | 203 | 4.80k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 4.80k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_36HasCircularInheritedProtocolsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 12 | get() const { | 200 | 12 | using Map = | 201 | 12 | llvm::DenseMap<RequestKey<Request>, | 202 | 12 | typename Request::OutputType>; | 203 | 12 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 12 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_17HasStorageRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 5.88k | get() const { | 200 | 5.88k | using Map = | 201 | 5.88k | llvm::DenseMap<RequestKey<Request>, | 202 | 5.88k | typename Request::OutputType>; | 203 | 5.88k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 5.88k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22HasInitAccessorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 3.52k | get() const { | 200 | 3.52k | using Map = | 201 | 3.52k | llvm::DenseMap<RequestKey<Request>, | 202 | 3.52k | typename Request::OutputType>; | 203 | 3.52k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 3.52k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27DefaultInitializerIsolationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 4.61k | get() const { | 200 | 4.61k | using Map = | 201 | 4.61k | llvm::DenseMap<RequestKey<Request>, | 202 | 4.61k | typename Request::OutputType>; | 203 | 4.61k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 4.61k | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31AttachedPropertyWrappersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 17.1k | get() const { | 200 | 17.1k | using Map = | 201 | 17.1k | llvm::DenseMap<RequestKey<Request>, | 202 | 17.1k | typename Request::OutputType>; | 203 | 17.1k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 17.1k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_34AttachedPropertyWrapperTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 63 | get() const { | 200 | 63 | using Map = | 201 | 63 | llvm::DenseMap<RequestKey<Request>, | 202 | 63 | typename Request::OutputType>; | 203 | 63 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 63 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_41PropertyWrapperBackingPropertyTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 63 | get() const { | 200 | 63 | using Map = | 201 | 63 | llvm::DenseMap<RequestKey<Request>, | 202 | 63 | typename Request::OutputType>; | 203 | 63 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 63 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_40PropertyWrapperAuxiliaryVariablesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 146 | get() const { | 200 | 146 | using Map = | 201 | 146 | llvm::DenseMap<RequestKey<Request>, | 202 | 146 | typename Request::OutputType>; | 203 | 146 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 146 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_37PropertyWrapperInitializerInfoRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 156 | get() const { | 200 | 156 | using Map = | 201 | 156 | llvm::DenseMap<RequestKey<Request>, | 202 | 156 | typename Request::OutputType>; | 203 | 156 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 156 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_32PropertyWrapperMutabilityRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 233 | get() const { | 200 | 233 | using Map = | 201 | 233 | llvm::DenseMap<RequestKey<Request>, | 202 | 233 | typename Request::OutputType>; | 203 | 233 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 233 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26LazyStoragePropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24ResultBuilderTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 446 | get() const { | 200 | 446 | using Map = | 201 | 446 | llvm::DenseMap<RequestKey<Request>, | 202 | 446 | typename Request::OutputType>; | 203 | 446 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 446 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28AttachedResultBuilderRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 667 | get() const { | 200 | 667 | using Map = | 201 | 667 | llvm::DenseMap<RequestKey<Request>, | 202 | 667 | typename Request::OutputType>; | 203 | 667 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 667 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_18RenamedDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_23FunctionOperatorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 1.64k | get() const { | 200 | 1.64k | using Map = | 201 | 1.64k | llvm::DenseMap<RequestKey<Request>, | 202 | 1.64k | typename Request::OutputType>; | 203 | 1.64k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 1.64k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19SimpleDidSetRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_15InitKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 759 | get() const { | 200 | 759 | using Map = | 201 | 759 | llvm::DenseMap<RequestKey<Request>, | 202 | 759 | typename Request::OutputType>; | 203 | 759 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 759 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19BodyInitKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 47 | get() const { | 200 | 47 | using Map = | 201 | 47 | llvm::DenseMap<RequestKey<Request>, | 202 | 47 | typename Request::OutputType>; | 203 | 47 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 47 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30OperatorPrecedenceGroupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 120 | get() const { | 200 | 120 | using Map = | 201 | 120 | llvm::DenseMap<RequestKey<Request>, | 202 | 120 | typename Request::OutputType>; | 203 | 120 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 120 | } |
Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21ActorIsolationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 7.97k | get() const { | 200 | 7.97k | using Map = | 201 | 7.97k | llvm::DenseMap<RequestKey<Request>, | 202 | 7.97k | typename Request::OutputType>; | 203 | 7.97k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 7.97k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31ExpandMacroExpansionExprRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24ResolveMacroConformancesEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22MacroDefinitionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv DeclContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26FragileFunctionKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 1.31k | get() const { | 200 | 1.31k | using Map = | 201 | 1.31k | llvm::DenseMap<RequestKey<Request>, | 202 | 1.31k | typename Request::OutputType>; | 203 | 1.31k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 1.31k | } |
DeclContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_19ParseMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 1.70k | get() const { | 200 | 1.70k | using Map = | 201 | 1.70k | llvm::DenseMap<RequestKey<Request>, | 202 | 1.70k | typename Request::OutputType>; | 203 | 1.70k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 1.70k | } |
DeclContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_17ABIMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 186 | get() const { | 200 | 186 | using Map = | 201 | 186 | llvm::DenseMap<RequestKey<Request>, | 202 | 186 | typename Request::OutputType>; | 203 | 186 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 186 | } |
DeclContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_17AllMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 50 | get() const { | 200 | 50 | using Map = | 201 | 50 | llvm::DenseMap<RequestKey<Request>, | 202 | 50 | typename Request::OutputType>; | 203 | 50 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 50 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_48GetDistributedActorArgumentDecodingMethodRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_43GetDistributedActorInvocationDecoderRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26GetDistributedThunkRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_40GetDistributedActorSystemPropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_36GetDistributedActorIDPropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: DocComment.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27SemanticBriefCommentRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Effects.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_36PolymorphicEffectRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Effects.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28PolymorphicEffectKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 526 | get() const { | 200 | 526 | using Map = | 201 | 526 | llvm::DenseMap<RequestKey<Request>, | 202 | 526 | typename Request::OutputType>; | 203 | 526 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 526 | } |
Unexecuted instantiation: Effects.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27ConformanceHasEffectRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Expr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26LocalDiscriminatorsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Expr.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21ClosureEffectsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv GenericSignature.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31AbstractGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 277 | get() const { | 200 | 277 | using Map = | 201 | 277 | llvm::DenseMap<RequestKey<Request>, | 202 | 277 | typename Request::OutputType>; | 203 | 277 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 277 | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22IsNonUserModuleRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28ModuleImplicitImportsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 48 | get() const { | 200 | 48 | using Map = | 201 | 48 | llvm::DenseMap<RequestKey<Request>, | 202 | 48 | typename Request::OutputType>; | 203 | 48 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 48 | } |
Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25PrimarySourceFilesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 84 | get() const { | 200 | 84 | using Map = | 201 | 84 | llvm::DenseMap<RequestKey<Request>, | 202 | 84 | typename Request::OutputType>; | 203 | 84 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 84 | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26MangleLocalTypeDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21ExpandExtensionMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 9.27k | get() const { | 200 | 9.27k | using Map = | 201 | 9.27k | llvm::DenseMap<RequestKey<Request>, | 202 | 9.27k | typename Request::OutputType>; | 203 | 9.27k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 9.27k | } |
Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26GetImplicitSendableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 223 | get() const { | 200 | 223 | using Map = | 201 | 223 | llvm::DenseMap<RequestKey<Request>, | 202 | 223 | typename Request::OutputType>; | 203 | 223 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 223 | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_41GetDistributedActorImplicitCodableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_16SPIGroupsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 8.89k | get() const { | 200 | 8.89k | using Map = | 201 | 8.89k | llvm::DenseMap<RequestKey<Request>, | 202 | 8.89k | typename Request::OutputType>; | 203 | 8.89k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 8.89k | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25ModuleLibraryLevelRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25ParseTopLevelDeclsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 199 | get() const { | 200 | 199 | using Map = | 201 | 199 | llvm::DenseMap<RequestKey<Request>, | 202 | 199 | typename Request::OutputType>; | 203 | 199 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 199 | } |
Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_25ExportedSourceFileRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 42 | get() const { | 200 | 42 | using Map = | 201 | 42 | llvm::DenseMap<RequestKey<Request>, | 202 | 42 | typename Request::OutputType>; | 203 | 42 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 42 | } |
Module.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_22GetSourceFileAsyncNodeEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 20 | get() const { | 200 | 20 | using Map = | 201 | 20 | llvm::DenseMap<RequestKey<Request>, | 202 | 20 | typename Request::OutputType>; | 203 | 20 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 20 | } |
NameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_35ExpandSynthesizedMemberMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 178 | get() const { | 200 | 178 | using Map = | 201 | 178 | llvm::DenseMap<RequestKey<Request>, | 202 | 178 | typename Request::OutputType>; | 203 | 178 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 178 | } |
Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21ExpandExtensionMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv NameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_40PotentialMacroExpansionsInContextRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 2.28k | get() const { | 200 | 2.28k | using Map = | 201 | 2.28k | llvm::DenseMap<RequestKey<Request>, | 202 | 2.28k | typename Request::OutputType>; | 203 | 2.28k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 2.28k | } |
Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30IsCallAsFunctionNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv NameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_38HasDynamicMemberLookupAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 343 | get() const { | 200 | 343 | using Map = | 201 | 343 | llvm::DenseMap<RequestKey<Request>, | 202 | 343 | typename Request::OutputType>; | 203 | 343 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 343 | } |
Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_34HasDynamicCallableAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv OperatorNameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_26LookupInfixOperatorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 56 | get() const { | 200 | 56 | using Map = | 201 | 56 | llvm::DenseMap<RequestKey<Request>, | 202 | 56 | typename Request::OutputType>; | 203 | 56 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 56 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_27LookupPrefixOperatorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28LookupPostfixOperatorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv OperatorNameLookup.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_28LookupPrecedenceGroupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 30 | get() const { | 200 | 30 | using Map = | 201 | 30 | llvm::DenseMap<RequestKey<Request>, | 202 | 30 | typename Request::OutputType>; | 203 | 30 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 30 | } |
ProtocolConformance.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_30ConditionalRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 1.41k | get() const { | 200 | 1.41k | using Map = | 201 | 1.41k | llvm::DenseMap<RequestKey<Request>, | 202 | 1.41k | typename Request::OutputType>; | 203 | 1.41k | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 1.41k | } |
ProtocolConformance.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_37LookupAllConformancesInContextRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 726 | get() const { | 200 | 726 | using Map = | 201 | 726 | llvm::DenseMap<RequestKey<Request>, | 202 | 726 | typename Request::OutputType>; | 203 | 726 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 726 | } |
Unexecuted instantiation: RawComment.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_17RawCommentRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: RequirementMachineRequests.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_31AbstractGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Stmt.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_24IsSingleValueStmtRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 147 | get() const { | 200 | 147 | using Map = | 201 | 147 | llvm::DenseMap<RequestKey<Request>, | 202 | 147 | typename Request::OutputType>; | 203 | 147 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 147 | } |
Unexecuted instantiation: Stmt.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_18BreakTargetRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Unexecuted instantiation: Stmt.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_21ContinueTargetRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv TypeCheckRequests.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_18RequirementRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 49 | get() const { | 200 | 49 | using Map = | 201 | 49 | llvm::DenseMap<RequestKey<Request>, | 202 | 49 | typename Request::OutputType>; | 203 | 49 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 49 | } |
TypeRefinementContext.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_40ExpandChildTypeRefinementContextsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv Line | Count | Source | 199 | 143 | get() const { | 200 | 143 | using Map = | 201 | 143 | llvm::DenseMap<RequestKey<Request>, | 202 | 143 | typename Request::OutputType>; | 203 | 143 | assert(Storage); | 204 | 0 | return static_cast<Map *>(Storage); | 205 | 143 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZNK5swift9evaluator15PerRequestCache3getINS_20USRGenerationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEEEv |
206 | | |
207 | 168k | bool isNull() const { return !Storage; } |
208 | 4.42k | ~PerRequestCache() { |
209 | 4.42k | if (Storage) |
210 | 659 | Deleter(Storage); |
211 | 4.42k | } |
212 | | }; |
213 | | |
214 | | /// Data structure for caching results of requests. Sharded by the type ID |
215 | | /// zone and request kind, with a PerRequestCache for each request kind. |
216 | | /// |
217 | | /// Conceptually equivalent to DenseMap<AnyRequest, AnyValue>, but without |
218 | | /// type erasure overhead for keys and values. |
219 | | class RequestCache { |
220 | | |
221 | | #define SWIFT_TYPEID_ZONE(Name, Id) \ |
222 | | std::vector<PerRequestCache> Name##ZoneCache; \ |
223 | | \ |
224 | | template < \ |
225 | | typename Request, typename ZoneTypes = TypeIDZoneTypes<Zone::Name>, \ |
226 | | typename std::enable_if<TypeID<Request>::zone == Zone::Name>::type * = \ |
227 | | nullptr> \ |
228 | | llvm::DenseMap<RequestKey<Request>, \ |
229 | | typename Request::OutputType> * \ |
230 | 168k | getCache() { \ |
231 | 168k | auto &caches = Name##ZoneCache; \ |
232 | 168k | if (caches.empty()) { \ |
233 | 41 | caches.resize(ZoneTypes::Count); \ |
234 | 41 | } \ |
235 | 168k | auto idx = TypeID<Request>::localID; \ |
236 | 168k | if (caches[idx].isNull()) { \ |
237 | 659 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ |
238 | 659 | } \ |
239 | 168k | return caches[idx].template get<Request>(); \ |
240 | 168k | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22SymbolSourceMapRequestENS_15TypeIDZoneTypesILNS_4ZoneE14EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_20USRGenerationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_18RenamedDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24IDEInspectionFileRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ExtendedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24ConstantValueInfoRequestENS_15TypeIDZoneTypesILNS_4ZoneE140EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22SymbolSourceMapRequestENS_15TypeIDZoneTypesILNS_4ZoneE14EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Common.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28TangentStoredPropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 16 | getCache() { \ | 231 | 16 | auto &caches = Name##ZoneCache; \ | 232 | 16 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 16 | auto idx = TypeID<Request>::localID; \ | 236 | 16 | if (caches[idx].isNull()) { \ | 237 | 0 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 0 | } \ | 239 | 16 | return caches[idx].template get<Request>(); \ | 240 | 16 | } |
Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28ProvideDefaultImplForRequestENS_15TypeIDZoneTypesILNS_4ZoneE137EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_46RootAndResultTypeOfKeypathDynamicMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26ResolveProtocolNameRequestENS_15TypeIDZoneTypesILNS_4ZoneE137EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28ProvideDefaultImplForRequestENS_15TypeIDZoneTypesILNS_4ZoneE137EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_29CollectOverriddenDeclsRequestENS_15TypeIDZoneTypesILNS_4ZoneE137EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_23IsDeclApplicableRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24TypeRelationCheckRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_15InitKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_23OpaqueResultTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26LazyStoragePropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_40PropertyWrapperAuxiliaryVariablesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_37PropertyWrapperInitializerInfoRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_41PropertyWrapperBackingPropertyTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27DefaultInitializerIsolationENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_23FunctionOperatorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30OperatorPrecedenceGroupRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ExtendedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22MacroDefinitionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_17HasStorageRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26MangleLocalTypeDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28PreCheckResultBuilderRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31ExpandMacroExpansionExprRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv CSRanking.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_32CompareDeclSpecializationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 70 | getCache() { \ | 231 | 70 | auto &caches = Name##ZoneCache; \ | 232 | 70 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 70 | auto idx = TypeID<Request>::localID; \ | 236 | 70 | if (caches[idx].isNull()) { \ | 237 | 3 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 3 | } \ | 239 | 70 | return caches[idx].template get<Request>(); \ | 240 | 70 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_29EnumElementExprPatternRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_34HasDynamicCallableAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv CSStep.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25IsDeclRefinementOfRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 179 | getCache() { \ | 231 | 179 | auto &caches = Name##ZoneCache; \ | 232 | 179 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 179 | auto idx = TypeID<Request>::localID; \ | 236 | 179 | if (caches[idx].isNull()) { \ | 237 | 3 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 3 | } \ | 239 | 179 | return caches[idx].template get<Request>(); \ | 240 | 179 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_35HasUserDefinedDesignatedInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 109 | getCache() { \ | 231 | 109 | auto &caches = Name##ZoneCache; \ | 232 | 109 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 109 | auto idx = TypeID<Request>::localID; \ | 236 | 109 | if (caches[idx].isNull()) { \ | 237 | 6 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 6 | } \ | 239 | 109 | return caches[idx].template get<Request>(); \ | 240 | 109 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_44AreAllStoredPropertiesDefaultInitableRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 51 | getCache() { \ | 231 | 51 | auto &caches = Name##ZoneCache; \ | 232 | 51 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 51 | auto idx = TypeID<Request>::localID; \ | 236 | 51 | if (caches[idx].isNull()) { \ | 237 | 5 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 5 | } \ | 239 | 51 | return caches[idx].template get<Request>(); \ | 240 | 51 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21ClosureEffectsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31ClosureHasExplicitResultRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv DerivedConformanceDifferentiable.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28TangentStoredPropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 4 | getCache() { \ | 231 | 4 | auto &caches = Name##ZoneCache; \ | 232 | 4 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 4 | auto idx = TypeID<Request>::localID; \ | 236 | 4 | if (caches[idx].isNull()) { \ | 237 | 1 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 1 | } \ | 239 | 4 | return caches[idx].template get<Request>(); \ | 240 | 4 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_23IsDeclApplicableRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_46RootAndResultTypeOfKeypathDynamicMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25PreCheckReturnStmtRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_29SynthesizeMainFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24ResolveMacroConformancesENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31InferredGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27GlobalActorAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ExtendedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27GlobalActorAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_35DistributedModuleIsAvailableRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31CheckDistributedFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30ValidatePrecedenceGroupRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 39 | getCache() { \ | 231 | 39 | auto &caches = Name##ZoneCache; \ | 232 | 39 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 39 | auto idx = TypeID<Request>::localID; \ | 236 | 39 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 39 | return caches[idx].template get<Request>(); \ | 240 | 39 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_35ExpandSynthesizedMemberMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_29SynthesizeMainFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 57 | getCache() { \ | 231 | 57 | auto &caches = Name##ZoneCache; \ | 232 | 57 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 57 | auto idx = TypeID<Request>::localID; \ | 236 | 57 | if (caches[idx].isNull()) { \ | 237 | 5 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 5 | } \ | 239 | 57 | return caches[idx].template get<Request>(); \ | 240 | 57 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_36HasCircularInheritedProtocolsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26HasCircularRawValueRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30IsABICompatibleOverrideRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_34TypeCheckObjCImplementationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30ExternalMacroDefinitionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21ExpandExtensionMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22ApplyAccessNoteRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 2.45k | getCache() { \ | 231 | 2.45k | auto &caches = Name##ZoneCache; \ | 232 | 2.45k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 2.45k | auto idx = TypeID<Request>::localID; \ | 236 | 2.45k | if (caches[idx].isNull()) { \ | 237 | 13 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 13 | } \ | 239 | 2.45k | return caches[idx].template get<Request>(); \ | 240 | 2.45k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ResolveMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31InferredGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30ExternalMacroDefinitionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25CompilerPluginLoadRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31ExpandMacroExpansionDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv TypeCheckPattern.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_18PatternTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 222 | getCache() { \ | 231 | 222 | auto &caches = Name##ZoneCache; \ | 232 | 222 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 222 | auto idx = TypeID<Request>::localID; \ | 236 | 222 | if (caches[idx].isNull()) { \ | 237 | 5 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 5 | } \ | 239 | 222 | return caches[idx].template get<Request>(); \ | 240 | 222 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31AttachedPropertyWrappersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_40PotentialMacroExpansionsInContextRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv TypeCheckStmt.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25PreCheckReturnStmtRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 186 | getCache() { \ | 231 | 186 | auto &caches = Name##ZoneCache; \ | 232 | 186 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 186 | auto idx = TypeID<Request>::localID; \ | 236 | 186 | if (caches[idx].isNull()) { \ | 237 | 7 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 7 | } \ | 239 | 186 | return caches[idx].template get<Request>(); \ | 240 | 186 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26LocalDiscriminatorsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_35ExpandSynthesizedMemberMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22ExpandPeerMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_32PropertyWrapperLValuenessRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_20ExpandAccessorMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 204 | getCache() { \ | 231 | 204 | auto &caches = Name##ZoneCache; \ | 232 | 204 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 204 | auto idx = TypeID<Request>::localID; \ | 236 | 204 | if (caches[idx].isNull()) { \ | 237 | 5 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 5 | } \ | 239 | 204 | return caches[idx].template get<Request>(); \ | 240 | 204 | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_40PropertyWrapperAuxiliaryVariablesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv TypeChecker.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_49CheckInconsistentImplementationOnlyImportsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 39 | getCache() { \ | 231 | 39 | auto &caches = Name##ZoneCache; \ | 232 | 39 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 39 | auto idx = TypeID<Request>::localID; \ | 236 | 39 | if (caches[idx].isNull()) { \ | 237 | 13 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 13 | } \ | 239 | 39 | return caches[idx].template get<Request>(); \ | 240 | 39 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_38CheckInconsistentSPIOnlyImportsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 39 | getCache() { \ | 231 | 39 | auto &caches = Name##ZoneCache; \ | 232 | 39 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 39 | auto idx = TypeID<Request>::localID; \ | 236 | 39 | if (caches[idx].isNull()) { \ | 237 | 13 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 13 | } \ | 239 | 39 | return caches[idx].template get<Request>(); \ | 240 | 39 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_36CheckInconsistentAccessLevelOnImportENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 39 | getCache() { \ | 231 | 39 | auto &caches = Name##ZoneCache; \ | 232 | 39 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 39 | auto idx = TypeID<Request>::localID; \ | 236 | 39 | if (caches[idx].isNull()) { \ | 237 | 13 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 13 | } \ | 239 | 39 | return caches[idx].template get<Request>(); \ | 240 | 39 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_41CheckInconsistentWeakLinkedImportsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 39 | getCache() { \ | 231 | 39 | auto &caches = Name##ZoneCache; \ | 232 | 39 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 39 | auto idx = TypeID<Request>::localID; \ | 236 | 39 | if (caches[idx].isNull()) { \ | 237 | 13 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 13 | } \ | 239 | 39 | return caches[idx].template get<Request>(); \ | 240 | 39 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31InferredGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 228 | getCache() { \ | 231 | 228 | auto &caches = Name##ZoneCache; \ | 232 | 228 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 228 | auto idx = TypeID<Request>::localID; \ | 236 | 228 | if (caches[idx].isNull()) { \ | 237 | 9 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 9 | } \ | 239 | 228 | return caches[idx].template get<Request>(); \ | 240 | 228 | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_46RootAndResultTypeOfKeypathDynamicMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv ClangImporter.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_17HasStorageRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 561 | getCache() { \ | 231 | 561 | auto &caches = Name##ZoneCache; \ | 232 | 561 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 561 | auto idx = TypeID<Request>::localID; \ | 236 | 561 | if (caches[idx].isNull()) { \ | 237 | 6 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 6 | } \ | 239 | 561 | return caches[idx].template get<Request>(); \ | 240 | 561 | } |
Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_15InitKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_17HasStorageRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ExtendedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ParseDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ParseMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26LocalDiscriminatorsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv ASTContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ExtendedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 1.64k | getCache() { \ | 231 | 1.64k | auto &caches = Name##ZoneCache; \ | 232 | 1.64k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 1.64k | auto idx = TypeID<Request>::localID; \ | 236 | 1.64k | if (caches[idx].isNull()) { \ | 237 | 10 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 10 | } \ | 239 | 1.64k | return caches[idx].template get<Request>(); \ | 240 | 1.64k | } |
Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24ResolveMacroConformancesENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30TypeEraserHasViableInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Attr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31SpecializeAttrTargetDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 48 | getCache() { \ | 231 | 48 | auto &caches = Name##ZoneCache; \ | 232 | 48 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 48 | auto idx = TypeID<Request>::localID; \ | 236 | 48 | if (caches[idx].isNull()) { \ | 237 | 1 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 1 | } \ | 239 | 48 | return caches[idx].template get<Request>(); \ | 240 | 48 | } |
Attr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_33DerivativeAttrOriginalDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 60 | getCache() { \ | 231 | 60 | auto &caches = Name##ZoneCache; \ | 232 | 60 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 60 | auto idx = TypeID<Request>::localID; \ | 236 | 60 | if (caches[idx].isNull()) { \ | 237 | 2 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 2 | } \ | 239 | 60 | return caches[idx].template get<Request>(); \ | 240 | 60 | } |
Attr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_29ImplementsAttrProtocolRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 21 | getCache() { \ | 231 | 21 | auto &caches = Name##ZoneCache; \ | 232 | 21 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 21 | auto idx = TypeID<Request>::localID; \ | 236 | 21 | if (caches[idx].isNull()) { \ | 237 | 5 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 5 | } \ | 239 | 21 | return caches[idx].template get<Request>(); \ | 240 | 21 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_38InitAccessorReferencedVariablesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_33SemanticAvailableRangeAttrRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Availability.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30SemanticUnavailableAttrRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 1.09k | getCache() { \ | 231 | 1.09k | auto &caches = Name##ZoneCache; \ | 232 | 1.09k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 1.09k | auto idx = TypeID<Request>::localID; \ | 236 | 1.09k | if (caches[idx].isNull()) { \ | 237 | 5 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 5 | } \ | 239 | 1.09k | return caches[idx].template get<Request>(); \ | 240 | 1.09k | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ParseMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27ExpandMemberAttributeMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 23.2k | getCache() { \ | 231 | 23.2k | auto &caches = Name##ZoneCache; \ | 232 | 23.2k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 23.2k | auto idx = TypeID<Request>::localID; \ | 236 | 23.2k | if (caches[idx].isNull()) { \ | 237 | 14 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 14 | } \ | 239 | 23.2k | return caches[idx].template get<Request>(); \ | 240 | 23.2k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22ExpandPeerMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 6.86k | getCache() { \ | 231 | 6.86k | auto &caches = Name##ZoneCache; \ | 232 | 6.86k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 6.86k | auto idx = TypeID<Request>::localID; \ | 236 | 6.86k | if (caches[idx].isNull()) { \ | 237 | 14 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 14 | } \ | 239 | 6.86k | return caches[idx].template get<Request>(); \ | 240 | 6.86k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31ExpandMacroExpansionDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ResolveMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27GlobalActorAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 13.1k | getCache() { \ | 231 | 13.1k | auto &caches = Name##ZoneCache; \ | 232 | 13.1k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 13.1k | auto idx = TypeID<Request>::localID; \ | 236 | 13.1k | if (caches[idx].isNull()) { \ | 237 | 12 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 12 | } \ | 239 | 13.1k | return caches[idx].template get<Request>(); \ | 240 | 13.1k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25ScopedImportLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ExtendedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 102 | getCache() { \ | 231 | 102 | auto &caches = Name##ZoneCache; \ | 232 | 102 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 102 | auto idx = TypeID<Request>::localID; \ | 236 | 102 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 102 | return caches[idx].template get<Request>(); \ | 240 | 102 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30IsABICompatibleOverrideRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 63 | getCache() { \ | 231 | 63 | auto &caches = Name##ZoneCache; \ | 232 | 63 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 63 | auto idx = TypeID<Request>::localID; \ | 236 | 63 | if (caches[idx].isNull()) { \ | 237 | 1 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 1 | } \ | 239 | 63 | return caches[idx].template get<Request>(); \ | 240 | 63 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26LocalDiscriminatorsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_23OpaqueResultTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30DynamicallyReplacedDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 3.94k | getCache() { \ | 231 | 3.94k | auto &caches = Name##ZoneCache; \ | 232 | 3.94k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 3.94k | auto idx = TypeID<Request>::localID; \ | 236 | 3.94k | if (caches[idx].isNull()) { \ | 237 | 12 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 12 | } \ | 239 | 3.94k | return caches[idx].template get<Request>(); \ | 240 | 3.94k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_23StoredPropertiesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 20.5k | getCache() { \ | 231 | 20.5k | auto &caches = Name##ZoneCache; \ | 232 | 20.5k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 20.5k | auto idx = TypeID<Request>::localID; \ | 236 | 20.5k | if (caches[idx].isNull()) { \ | 237 | 11 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 11 | } \ | 239 | 20.5k | return caches[idx].template get<Request>(); \ | 240 | 20.5k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_29InitAccessorPropertiesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 97 | getCache() { \ | 231 | 97 | auto &caches = Name##ZoneCache; \ | 232 | 97 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 97 | auto idx = TypeID<Request>::localID; \ | 236 | 97 | if (caches[idx].isNull()) { \ | 237 | 5 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 5 | } \ | 239 | 97 | return caches[idx].template get<Request>(); \ | 240 | 97 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31MemberwiseInitPropertiesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 88 | getCache() { \ | 231 | 88 | auto &caches = Name##ZoneCache; \ | 232 | 88 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 88 | auto idx = TypeID<Request>::localID; \ | 236 | 88 | if (caches[idx].isNull()) { \ | 237 | 5 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 5 | } \ | 239 | 88 | return caches[idx].template get<Request>(); \ | 240 | 88 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_40StoredPropertiesAndMissingMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 38 | getCache() { \ | 231 | 38 | auto &caches = Name##ZoneCache; \ | 232 | 38 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 38 | auto idx = TypeID<Request>::localID; \ | 236 | 38 | if (caches[idx].isNull()) { \ | 237 | 1 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 1 | } \ | 239 | 38 | return caches[idx].template get<Request>(); \ | 240 | 38 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30PropertyWrapperTypeInfoRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_14IsActorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 9.90k | getCache() { \ | 231 | 9.90k | auto &caches = Name##ZoneCache; \ | 232 | 9.90k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 9.90k | auto idx = TypeID<Request>::localID; \ | 236 | 9.90k | if (caches[idx].isNull()) { \ | 237 | 9 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 9 | } \ | 239 | 9.90k | return caches[idx].template get<Request>(); \ | 240 | 9.90k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25IsDistributedActorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 5.49k | getCache() { \ | 231 | 5.49k | auto &caches = Name##ZoneCache; \ | 232 | 5.49k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 5.49k | auto idx = TypeID<Request>::localID; \ | 236 | 5.49k | if (caches[idx].isNull()) { \ | 237 | 13 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 13 | } \ | 239 | 5.49k | return caches[idx].template get<Request>(); \ | 240 | 5.49k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21StructuralTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 344 | getCache() { \ | 231 | 344 | auto &caches = Name##ZoneCache; \ | 232 | 344 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 344 | auto idx = TypeID<Request>::localID; \ | 236 | 344 | if (caches[idx].isNull()) { \ | 237 | 14 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 14 | } \ | 239 | 344 | return caches[idx].template get<Request>(); \ | 240 | 344 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_18EnumRawTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 268 | getCache() { \ | 231 | 268 | auto &caches = Name##ZoneCache; \ | 232 | 268 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 268 | auto idx = TypeID<Request>::localID; \ | 236 | 268 | if (caches[idx].isNull()) { \ | 237 | 10 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 10 | } \ | 239 | 268 | return caches[idx].template get<Request>(); \ | 240 | 268 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24HasMemberwiseInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 88 | getCache() { \ | 231 | 88 | auto &caches = Name##ZoneCache; \ | 232 | 88 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 88 | auto idx = TypeID<Request>::localID; \ | 236 | 88 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 88 | return caches[idx].template get<Request>(); \ | 240 | 88 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31SynthesizeMemberwiseInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 51 | getCache() { \ | 231 | 51 | auto &caches = Name##ZoneCache; \ | 232 | 51 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 51 | auto idx = TypeID<Request>::localID; \ | 236 | 51 | if (caches[idx].isNull()) { \ | 237 | 3 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 3 | } \ | 239 | 51 | return caches[idx].template get<Request>(); \ | 240 | 51 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_37ResolveEffectiveMemberwiseInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 108 | getCache() { \ | 231 | 108 | auto &caches = Name##ZoneCache; \ | 232 | 108 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 108 | auto idx = TypeID<Request>::localID; \ | 236 | 108 | if (caches[idx].isNull()) { \ | 237 | 3 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 3 | } \ | 239 | 108 | return caches[idx].template get<Request>(); \ | 240 | 108 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21HasDefaultInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 69 | getCache() { \ | 231 | 69 | auto &caches = Name##ZoneCache; \ | 232 | 69 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 69 | auto idx = TypeID<Request>::localID; \ | 236 | 69 | if (caches[idx].isNull()) { \ | 237 | 6 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 6 | } \ | 239 | 69 | return caches[idx].template get<Request>(); \ | 240 | 69 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28SynthesizeDefaultInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 18 | getCache() { \ | 231 | 18 | auto &caches = Name##ZoneCache; \ | 232 | 18 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 18 | auto idx = TypeID<Request>::localID; \ | 236 | 18 | if (caches[idx].isNull()) { \ | 237 | 3 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 3 | } \ | 239 | 18 | return caches[idx].template get<Request>(); \ | 240 | 18 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26GlobalActorInstanceRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21IsDefaultActorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 45 | getCache() { \ | 231 | 45 | auto &caches = Name##ZoneCache; \ | 232 | 45 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 45 | auto idx = TypeID<Request>::localID; \ | 236 | 45 | if (caches[idx].isNull()) { \ | 237 | 1 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 1 | } \ | 239 | 45 | return caches[idx].template get<Request>(); \ | 240 | 45 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25ClassAncestryFlagsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 87 | getCache() { \ | 231 | 87 | auto &caches = Name##ZoneCache; \ | 232 | 87 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 87 | auto idx = TypeID<Request>::localID; \ | 236 | 87 | if (caches[idx].isNull()) { \ | 237 | 3 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 3 | } \ | 239 | 87 | return caches[idx].template get<Request>(); \ | 240 | 87 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26HasCircularRawValueRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 6 | getCache() { \ | 231 | 6 | auto &caches = Name##ZoneCache; \ | 232 | 6 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 6 | auto idx = TypeID<Request>::localID; \ | 236 | 6 | if (caches[idx].isNull()) { \ | 237 | 1 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 1 | } \ | 239 | 6 | return caches[idx].template get<Request>(); \ | 240 | 6 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_29PrimaryAssociatedTypesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 6 | getCache() { \ | 231 | 6 | auto &caches = Name##ZoneCache; \ | 232 | 6 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 6 | auto idx = TypeID<Request>::localID; \ | 236 | 6 | if (caches[idx].isNull()) { \ | 237 | 2 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 2 | } \ | 239 | 6 | return caches[idx].template get<Request>(); \ | 240 | 6 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_29StructuralRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 25 | getCache() { \ | 231 | 25 | auto &caches = Name##ZoneCache; \ | 232 | 25 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 25 | auto idx = TypeID<Request>::localID; \ | 236 | 25 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 25 | return caches[idx].template get<Request>(); \ | 240 | 25 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28TypeAliasRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 15 | getCache() { \ | 231 | 15 | auto &caches = Name##ZoneCache; \ | 232 | 15 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 15 | auto idx = TypeID<Request>::localID; \ | 236 | 15 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 15 | return caches[idx].template get<Request>(); \ | 240 | 15 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27ProtocolDependenciesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 4.80k | getCache() { \ | 231 | 4.80k | auto &caches = Name##ZoneCache; \ | 232 | 4.80k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 4.80k | auto idx = TypeID<Request>::localID; \ | 236 | 4.80k | if (caches[idx].isNull()) { \ | 237 | 12 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 12 | } \ | 239 | 4.80k | return caches[idx].template get<Request>(); \ | 240 | 4.80k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_36HasCircularInheritedProtocolsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 12 | getCache() { \ | 231 | 12 | auto &caches = Name##ZoneCache; \ | 232 | 12 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 12 | auto idx = TypeID<Request>::localID; \ | 236 | 12 | if (caches[idx].isNull()) { \ | 237 | 3 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 3 | } \ | 239 | 12 | return caches[idx].template get<Request>(); \ | 240 | 12 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_17HasStorageRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 5.88k | getCache() { \ | 231 | 5.88k | auto &caches = Name##ZoneCache; \ | 232 | 5.88k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 5.88k | auto idx = TypeID<Request>::localID; \ | 236 | 5.88k | if (caches[idx].isNull()) { \ | 237 | 7 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 7 | } \ | 239 | 5.88k | return caches[idx].template get<Request>(); \ | 240 | 5.88k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22HasInitAccessorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 3.52k | getCache() { \ | 231 | 3.52k | auto &caches = Name##ZoneCache; \ | 232 | 3.52k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 3.52k | auto idx = TypeID<Request>::localID; \ | 236 | 3.52k | if (caches[idx].isNull()) { \ | 237 | 12 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 12 | } \ | 239 | 3.52k | return caches[idx].template get<Request>(); \ | 240 | 3.52k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27DefaultInitializerIsolationENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 4.61k | getCache() { \ | 231 | 4.61k | auto &caches = Name##ZoneCache; \ | 232 | 4.61k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 4.61k | auto idx = TypeID<Request>::localID; \ | 236 | 4.61k | if (caches[idx].isNull()) { \ | 237 | 14 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 14 | } \ | 239 | 4.61k | return caches[idx].template get<Request>(); \ | 240 | 4.61k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31AttachedPropertyWrappersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 17.1k | getCache() { \ | 231 | 17.1k | auto &caches = Name##ZoneCache; \ | 232 | 17.1k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 17.1k | auto idx = TypeID<Request>::localID; \ | 236 | 17.1k | if (caches[idx].isNull()) { \ | 237 | 13 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 13 | } \ | 239 | 17.1k | return caches[idx].template get<Request>(); \ | 240 | 17.1k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_34AttachedPropertyWrapperTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 63 | getCache() { \ | 231 | 63 | auto &caches = Name##ZoneCache; \ | 232 | 63 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 63 | auto idx = TypeID<Request>::localID; \ | 236 | 63 | if (caches[idx].isNull()) { \ | 237 | 3 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 3 | } \ | 239 | 63 | return caches[idx].template get<Request>(); \ | 240 | 63 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_41PropertyWrapperBackingPropertyTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 63 | getCache() { \ | 231 | 63 | auto &caches = Name##ZoneCache; \ | 232 | 63 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 63 | auto idx = TypeID<Request>::localID; \ | 236 | 63 | if (caches[idx].isNull()) { \ | 237 | 3 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 3 | } \ | 239 | 63 | return caches[idx].template get<Request>(); \ | 240 | 63 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_40PropertyWrapperAuxiliaryVariablesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 146 | getCache() { \ | 231 | 146 | auto &caches = Name##ZoneCache; \ | 232 | 146 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 146 | auto idx = TypeID<Request>::localID; \ | 236 | 146 | if (caches[idx].isNull()) { \ | 237 | 5 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 5 | } \ | 239 | 146 | return caches[idx].template get<Request>(); \ | 240 | 146 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_37PropertyWrapperInitializerInfoRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 156 | getCache() { \ | 231 | 156 | auto &caches = Name##ZoneCache; \ | 232 | 156 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 156 | auto idx = TypeID<Request>::localID; \ | 236 | 156 | if (caches[idx].isNull()) { \ | 237 | 5 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 5 | } \ | 239 | 156 | return caches[idx].template get<Request>(); \ | 240 | 156 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_32PropertyWrapperMutabilityRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 233 | getCache() { \ | 231 | 233 | auto &caches = Name##ZoneCache; \ | 232 | 233 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 233 | auto idx = TypeID<Request>::localID; \ | 236 | 233 | if (caches[idx].isNull()) { \ | 237 | 6 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 6 | } \ | 239 | 233 | return caches[idx].template get<Request>(); \ | 240 | 233 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26LazyStoragePropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24ResultBuilderTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 446 | getCache() { \ | 231 | 446 | auto &caches = Name##ZoneCache; \ | 232 | 446 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 446 | auto idx = TypeID<Request>::localID; \ | 236 | 446 | if (caches[idx].isNull()) { \ | 237 | 8 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 8 | } \ | 239 | 446 | return caches[idx].template get<Request>(); \ | 240 | 446 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28AttachedResultBuilderRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 667 | getCache() { \ | 231 | 667 | auto &caches = Name##ZoneCache; \ | 232 | 667 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 667 | auto idx = TypeID<Request>::localID; \ | 236 | 667 | if (caches[idx].isNull()) { \ | 237 | 11 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 11 | } \ | 239 | 667 | return caches[idx].template get<Request>(); \ | 240 | 667 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_18RenamedDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_23FunctionOperatorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 1.64k | getCache() { \ | 231 | 1.64k | auto &caches = Name##ZoneCache; \ | 232 | 1.64k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 1.64k | auto idx = TypeID<Request>::localID; \ | 236 | 1.64k | if (caches[idx].isNull()) { \ | 237 | 9 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 9 | } \ | 239 | 1.64k | return caches[idx].template get<Request>(); \ | 240 | 1.64k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19SimpleDidSetRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_15InitKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 759 | getCache() { \ | 231 | 759 | auto &caches = Name##ZoneCache; \ | 232 | 759 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 759 | auto idx = TypeID<Request>::localID; \ | 236 | 759 | if (caches[idx].isNull()) { \ | 237 | 13 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 13 | } \ | 239 | 759 | return caches[idx].template get<Request>(); \ | 240 | 759 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19BodyInitKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 47 | getCache() { \ | 231 | 47 | auto &caches = Name##ZoneCache; \ | 232 | 47 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 47 | auto idx = TypeID<Request>::localID; \ | 236 | 47 | if (caches[idx].isNull()) { \ | 237 | 3 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 3 | } \ | 239 | 47 | return caches[idx].template get<Request>(); \ | 240 | 47 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30OperatorPrecedenceGroupRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 120 | getCache() { \ | 231 | 120 | auto &caches = Name##ZoneCache; \ | 232 | 120 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 120 | auto idx = TypeID<Request>::localID; \ | 236 | 120 | if (caches[idx].isNull()) { \ | 237 | 9 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 9 | } \ | 239 | 120 | return caches[idx].template get<Request>(); \ | 240 | 120 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21ActorIsolationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 7.97k | getCache() { \ | 231 | 7.97k | auto &caches = Name##ZoneCache; \ | 232 | 7.97k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 7.97k | auto idx = TypeID<Request>::localID; \ | 236 | 7.97k | if (caches[idx].isNull()) { \ | 237 | 12 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 12 | } \ | 239 | 7.97k | return caches[idx].template get<Request>(); \ | 240 | 7.97k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31ExpandMacroExpansionExprRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24ResolveMacroConformancesENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22MacroDefinitionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv DeclContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26FragileFunctionKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 1.31k | getCache() { \ | 231 | 1.31k | auto &caches = Name##ZoneCache; \ | 232 | 1.31k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 1.31k | auto idx = TypeID<Request>::localID; \ | 236 | 1.31k | if (caches[idx].isNull()) { \ | 237 | 12 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 12 | } \ | 239 | 1.31k | return caches[idx].template get<Request>(); \ | 240 | 1.31k | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_19ParseMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 1.70k | getCache() { \ | 231 | 1.70k | auto &caches = Name##ZoneCache; \ | 232 | 1.70k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 1.70k | auto idx = TypeID<Request>::localID; \ | 236 | 1.70k | if (caches[idx].isNull()) { \ | 237 | 8 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 8 | } \ | 239 | 1.70k | return caches[idx].template get<Request>(); \ | 240 | 1.70k | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_17ABIMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 186 | getCache() { \ | 231 | 186 | auto &caches = Name##ZoneCache; \ | 232 | 186 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 186 | auto idx = TypeID<Request>::localID; \ | 236 | 186 | if (caches[idx].isNull()) { \ | 237 | 7 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 7 | } \ | 239 | 186 | return caches[idx].template get<Request>(); \ | 240 | 186 | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_17AllMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 50 | getCache() { \ | 231 | 50 | auto &caches = Name##ZoneCache; \ | 232 | 50 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 50 | auto idx = TypeID<Request>::localID; \ | 236 | 50 | if (caches[idx].isNull()) { \ | 237 | 5 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 5 | } \ | 239 | 50 | return caches[idx].template get<Request>(); \ | 240 | 50 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_48GetDistributedActorArgumentDecodingMethodRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_43GetDistributedActorInvocationDecoderRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_49GetDistributedRemoteCallTargetInitFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_51GetDistributedRemoteCallArgumentInitFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_50GetDistributedActorSystemRemoteCallFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26GetDistributedThunkRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_40GetDistributedActorSystemPropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_36GetDistributedActorIDPropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27SemanticBriefCommentRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_36PolymorphicEffectRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Effects.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28PolymorphicEffectKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 526 | getCache() { \ | 231 | 526 | auto &caches = Name##ZoneCache; \ | 232 | 526 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 526 | auto idx = TypeID<Request>::localID; \ | 236 | 526 | if (caches[idx].isNull()) { \ | 237 | 7 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 7 | } \ | 239 | 526 | return caches[idx].template get<Request>(); \ | 240 | 526 | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27ConformanceHasEffectRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26LocalDiscriminatorsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21ClosureEffectsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv GenericSignature.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31AbstractGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 277 | getCache() { \ | 231 | 277 | auto &caches = Name##ZoneCache; \ | 232 | 277 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 277 | auto idx = TypeID<Request>::localID; \ | 236 | 277 | if (caches[idx].isNull()) { \ | 237 | 7 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 7 | } \ | 239 | 277 | return caches[idx].template get<Request>(); \ | 240 | 277 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22IsNonUserModuleRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28ModuleImplicitImportsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 48 | getCache() { \ | 231 | 48 | auto &caches = Name##ZoneCache; \ | 232 | 48 | if (caches.empty()) { \ | 233 | 14 | caches.resize(ZoneTypes::Count); \ | 234 | 14 | } \ | 235 | 48 | auto idx = TypeID<Request>::localID; \ | 236 | 48 | if (caches[idx].isNull()) { \ | 237 | 14 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 14 | } \ | 239 | 48 | return caches[idx].template get<Request>(); \ | 240 | 48 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25PrimarySourceFilesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 84 | getCache() { \ | 231 | 84 | auto &caches = Name##ZoneCache; \ | 232 | 84 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 84 | auto idx = TypeID<Request>::localID; \ | 236 | 84 | if (caches[idx].isNull()) { \ | 237 | 12 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 12 | } \ | 239 | 84 | return caches[idx].template get<Request>(); \ | 240 | 84 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26MangleLocalTypeDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21ExpandExtensionMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 9.27k | getCache() { \ | 231 | 9.27k | auto &caches = Name##ZoneCache; \ | 232 | 9.27k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 9.27k | auto idx = TypeID<Request>::localID; \ | 236 | 9.27k | if (caches[idx].isNull()) { \ | 237 | 13 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 13 | } \ | 239 | 9.27k | return caches[idx].template get<Request>(); \ | 240 | 9.27k | } |
Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26GetImplicitSendableRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 223 | getCache() { \ | 231 | 223 | auto &caches = Name##ZoneCache; \ | 232 | 223 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 223 | auto idx = TypeID<Request>::localID; \ | 236 | 223 | if (caches[idx].isNull()) { \ | 237 | 8 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 8 | } \ | 239 | 223 | return caches[idx].template get<Request>(); \ | 240 | 223 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_41GetDistributedActorImplicitCodableRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_16SPIGroupsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 8.89k | getCache() { \ | 231 | 8.89k | auto &caches = Name##ZoneCache; \ | 232 | 8.89k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 8.89k | auto idx = TypeID<Request>::localID; \ | 236 | 8.89k | if (caches[idx].isNull()) { \ | 237 | 13 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 13 | } \ | 239 | 8.89k | return caches[idx].template get<Request>(); \ | 240 | 8.89k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25ModuleLibraryLevelRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25ParseTopLevelDeclsRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 199 | getCache() { \ | 231 | 199 | auto &caches = Name##ZoneCache; \ | 232 | 199 | if (caches.empty()) { \ | 233 | 14 | caches.resize(ZoneTypes::Count); \ | 234 | 14 | } \ | 235 | 199 | auto idx = TypeID<Request>::localID; \ | 236 | 199 | if (caches[idx].isNull()) { \ | 237 | 14 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 14 | } \ | 239 | 199 | return caches[idx].template get<Request>(); \ | 240 | 199 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_25ExportedSourceFileRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 42 | getCache() { \ | 231 | 42 | auto &caches = Name##ZoneCache; \ | 232 | 42 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 42 | auto idx = TypeID<Request>::localID; \ | 236 | 42 | if (caches[idx].isNull()) { \ | 237 | 14 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 14 | } \ | 239 | 42 | return caches[idx].template get<Request>(); \ | 240 | 42 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_22GetSourceFileAsyncNodeENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 20 | getCache() { \ | 231 | 20 | auto &caches = Name##ZoneCache; \ | 232 | 20 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 20 | auto idx = TypeID<Request>::localID; \ | 236 | 20 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 20 | return caches[idx].template get<Request>(); \ | 240 | 20 | } |
NameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_35ExpandSynthesizedMemberMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 178 | getCache() { \ | 231 | 178 | auto &caches = Name##ZoneCache; \ | 232 | 178 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 178 | auto idx = TypeID<Request>::localID; \ | 236 | 178 | if (caches[idx].isNull()) { \ | 237 | 7 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 7 | } \ | 239 | 178 | return caches[idx].template get<Request>(); \ | 240 | 178 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21ExpandExtensionMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv NameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_40PotentialMacroExpansionsInContextRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 2.28k | getCache() { \ | 231 | 2.28k | auto &caches = Name##ZoneCache; \ | 232 | 2.28k | if (caches.empty()) { \ | 233 | 12 | caches.resize(ZoneTypes::Count); \ | 234 | 12 | } \ | 235 | 2.28k | auto idx = TypeID<Request>::localID; \ | 236 | 2.28k | if (caches[idx].isNull()) { \ | 237 | 13 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 13 | } \ | 239 | 2.28k | return caches[idx].template get<Request>(); \ | 240 | 2.28k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30IsCallAsFunctionNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv NameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_38HasDynamicMemberLookupAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 343 | getCache() { \ | 231 | 343 | auto &caches = Name##ZoneCache; \ | 232 | 343 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 343 | auto idx = TypeID<Request>::localID; \ | 236 | 343 | if (caches[idx].isNull()) { \ | 237 | 5 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 5 | } \ | 239 | 343 | return caches[idx].template get<Request>(); \ | 240 | 343 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_34HasDynamicCallableAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_26LookupInfixOperatorRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 56 | getCache() { \ | 231 | 56 | auto &caches = Name##ZoneCache; \ | 232 | 56 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 56 | auto idx = TypeID<Request>::localID; \ | 236 | 56 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 56 | return caches[idx].template get<Request>(); \ | 240 | 56 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_27LookupPrefixOperatorRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28LookupPostfixOperatorRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_28LookupPrecedenceGroupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 30 | getCache() { \ | 231 | 30 | auto &caches = Name##ZoneCache; \ | 232 | 30 | if (caches.empty()) { \ | 233 | 1 | caches.resize(ZoneTypes::Count); \ | 234 | 1 | } \ | 235 | 30 | auto idx = TypeID<Request>::localID; \ | 236 | 30 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 30 | return caches[idx].template get<Request>(); \ | 240 | 30 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_30ConditionalRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 1.41k | getCache() { \ | 231 | 1.41k | auto &caches = Name##ZoneCache; \ | 232 | 1.41k | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 1.41k | auto idx = TypeID<Request>::localID; \ | 236 | 1.41k | if (caches[idx].isNull()) { \ | 237 | 10 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 10 | } \ | 239 | 1.41k | return caches[idx].template get<Request>(); \ | 240 | 1.41k | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_37LookupAllConformancesInContextRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 726 | getCache() { \ | 231 | 726 | auto &caches = Name##ZoneCache; \ | 232 | 726 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 726 | auto idx = TypeID<Request>::localID; \ | 236 | 726 | if (caches[idx].isNull()) { \ | 237 | 8 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 8 | } \ | 239 | 726 | return caches[idx].template get<Request>(); \ | 240 | 726 | } |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_17RawCommentRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_31AbstractGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Stmt.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_24IsSingleValueStmtRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 147 | getCache() { \ | 231 | 147 | auto &caches = Name##ZoneCache; \ | 232 | 147 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 147 | auto idx = TypeID<Request>::localID; \ | 236 | 147 | if (caches[idx].isNull()) { \ | 237 | 7 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 7 | } \ | 239 | 147 | return caches[idx].template get<Request>(); \ | 240 | 147 | } |
Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_18BreakTargetRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_21ContinueTargetRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv TypeCheckRequests.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_18RequirementRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 49 | getCache() { \ | 231 | 49 | auto &caches = Name##ZoneCache; \ | 232 | 49 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 49 | auto idx = TypeID<Request>::localID; \ | 236 | 49 | if (caches[idx].isNull()) { \ | 237 | 4 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 4 | } \ | 239 | 49 | return caches[idx].template get<Request>(); \ | 240 | 49 | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_40ExpandChildTypeRefinementContextsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv Line | Count | Source | 230 | 143 | getCache() { \ | 231 | 143 | auto &caches = Name##ZoneCache; \ | 232 | 143 | if (caches.empty()) { \ | 233 | 0 | caches.resize(ZoneTypes::Count); \ | 234 | 0 | } \ | 235 | 143 | auto idx = TypeID<Request>::localID; \ | 236 | 143 | if (caches[idx].isNull()) { \ | 237 | 5 | caches[idx] = PerRequestCache::makeEmpty<Request>(); \ | 238 | 5 | } \ | 239 | 143 | return caches[idx].template get<Request>(); \ | 240 | 143 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12RequestCache8getCacheINS_20USRGenerationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSC_10OutputTypeENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SE_EEEEv |
241 | | #include "swift/Basic/TypeIDZones.def" |
242 | | #undef SWIFT_TYPEID_ZONE |
243 | | |
244 | | public: |
245 | | template <typename Request> |
246 | | typename llvm::DenseMap<RequestKey<Request>, |
247 | | typename Request::OutputType>::const_iterator |
248 | 70.1k | find_as(const Request &req) { |
249 | 70.1k | auto *cache = getCache<Request>(); |
250 | 70.1k | return cache->find_as(req); |
251 | 70.1k | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_22SymbolSourceMapRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_20USRGenerationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_18RenamedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24IDEInspectionFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24ConstantValueInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_22SymbolSourceMapRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Common.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28TangentStoredPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 8 | find_as(const Request &req) { | 249 | 8 | auto *cache = getCache<Request>(); | 250 | 8 | return cache->find_as(req); | 251 | 8 | } |
Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28ProvideDefaultImplForRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26ResolveProtocolNameRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28ProvideDefaultImplForRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_29CollectOverriddenDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_23IsDeclApplicableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24TypeRelationCheckRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26MangleLocalTypeDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28PreCheckResultBuilderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31ExpandMacroExpansionExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ CSRanking.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_32CompareDeclSpecializationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 28 | find_as(const Request &req) { | 249 | 28 | auto *cache = getCache<Request>(); | 250 | 28 | return cache->find_as(req); | 251 | 28 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_29EnumElementExprPatternRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_34HasDynamicCallableAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ CSStep.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25IsDeclRefinementOfRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 71 | find_as(const Request &req) { | 249 | 71 | auto *cache = getCache<Request>(); | 250 | 71 | return cache->find_as(req); | 251 | 71 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_35HasUserDefinedDesignatedInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 43 | find_as(const Request &req) { | 249 | 43 | auto *cache = getCache<Request>(); | 250 | 43 | return cache->find_as(req); | 251 | 43 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_44AreAllStoredPropertiesDefaultInitableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 17 | find_as(const Request &req) { | 249 | 17 | auto *cache = getCache<Request>(); | 250 | 17 | return cache->find_as(req); | 251 | 17 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21ClosureEffectsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31ClosureHasExplicitResultRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_23IsDeclApplicableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25PreCheckReturnStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_29SynthesizeMainFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_35DistributedModuleIsAvailableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31CheckDistributedFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30ValidatePrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 13 | find_as(const Request &req) { | 249 | 13 | auto *cache = getCache<Request>(); | 250 | 13 | return cache->find_as(req); | 251 | 13 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_29SynthesizeMainFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 21 | find_as(const Request &req) { | 249 | 21 | auto *cache = getCache<Request>(); | 250 | 21 | return cache->find_as(req); | 251 | 21 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_36HasCircularInheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26HasCircularRawValueRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30IsABICompatibleOverrideRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_34TypeCheckObjCImplementationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30ExternalMacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_22ApplyAccessNoteRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 1.00k | find_as(const Request &req) { | 249 | 1.00k | auto *cache = getCache<Request>(); | 250 | 1.00k | return cache->find_as(req); | 251 | 1.00k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_19ResolveMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30ExternalMacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25CompilerPluginLoadRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31ExpandMacroExpansionDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ TypeCheckPattern.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_18PatternTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 88 | find_as(const Request &req) { | 249 | 88 | auto *cache = getCache<Request>(); | 250 | 88 | return cache->find_as(req); | 251 | 88 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31AttachedPropertyWrappersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_40PotentialMacroExpansionsInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ TypeCheckStmt.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25PreCheckReturnStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 62 | find_as(const Request &req) { | 249 | 62 | auto *cache = getCache<Request>(); | 250 | 62 | return cache->find_as(req); | 251 | 62 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_22ExpandPeerMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_32PropertyWrapperLValuenessRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_20ExpandAccessorMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 68 | find_as(const Request &req) { | 249 | 68 | auto *cache = getCache<Request>(); | 250 | 68 | return cache->find_as(req); | 251 | 68 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_49CheckInconsistentImplementationOnlyImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 13 | find_as(const Request &req) { | 249 | 13 | auto *cache = getCache<Request>(); | 250 | 13 | return cache->find_as(req); | 251 | 13 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_38CheckInconsistentSPIOnlyImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 13 | find_as(const Request &req) { | 249 | 13 | auto *cache = getCache<Request>(); | 250 | 13 | return cache->find_as(req); | 251 | 13 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_36CheckInconsistentAccessLevelOnImportEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 13 | find_as(const Request &req) { | 249 | 13 | auto *cache = getCache<Request>(); | 250 | 13 | return cache->find_as(req); | 251 | 13 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_41CheckInconsistentWeakLinkedImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 13 | find_as(const Request &req) { | 249 | 13 | auto *cache = getCache<Request>(); | 250 | 13 | return cache->find_as(req); | 251 | 13 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 76 | find_as(const Request &req) { | 249 | 76 | auto *cache = getCache<Request>(); | 250 | 76 | return cache->find_as(req); | 251 | 76 | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30TypeEraserHasViableInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Attr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31SpecializeAttrTargetDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 16 | find_as(const Request &req) { | 249 | 16 | auto *cache = getCache<Request>(); | 250 | 16 | return cache->find_as(req); | 251 | 16 | } |
Attr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_33DerivativeAttrOriginalDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 26 | find_as(const Request &req) { | 249 | 26 | auto *cache = getCache<Request>(); | 250 | 26 | return cache->find_as(req); | 251 | 26 | } |
Attr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_29ImplementsAttrProtocolRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 2 | find_as(const Request &req) { | 249 | 2 | auto *cache = getCache<Request>(); | 250 | 2 | return cache->find_as(req); | 251 | 2 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_38InitAccessorReferencedVariablesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_33SemanticAvailableRangeAttrRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Availability.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30SemanticUnavailableAttrRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 459 | find_as(const Request &req) { | 249 | 459 | auto *cache = getCache<Request>(); | 250 | 459 | return cache->find_as(req); | 251 | 459 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_27ExpandMemberAttributeMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 8.85k | find_as(const Request &req) { | 249 | 8.85k | auto *cache = getCache<Request>(); | 250 | 8.85k | return cache->find_as(req); | 251 | 8.85k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_22ExpandPeerMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 2.52k | find_as(const Request &req) { | 249 | 2.52k | auto *cache = getCache<Request>(); | 250 | 2.52k | return cache->find_as(req); | 251 | 2.52k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31ExpandMacroExpansionDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_19ResolveMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 5.96k | find_as(const Request &req) { | 249 | 5.96k | auto *cache = getCache<Request>(); | 250 | 5.96k | return cache->find_as(req); | 251 | 5.96k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25ScopedImportLookupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_19ExtendedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 51 | find_as(const Request &req) { | 249 | 51 | auto *cache = getCache<Request>(); | 250 | 51 | return cache->find_as(req); | 251 | 51 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30IsABICompatibleOverrideRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 28 | find_as(const Request &req) { | 249 | 28 | auto *cache = getCache<Request>(); | 250 | 28 | return cache->find_as(req); | 251 | 28 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_23OpaqueResultTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30DynamicallyReplacedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 1.45k | find_as(const Request &req) { | 249 | 1.45k | auto *cache = getCache<Request>(); | 250 | 1.45k | return cache->find_as(req); | 251 | 1.45k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_23StoredPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 10.2k | find_as(const Request &req) { | 249 | 10.2k | auto *cache = getCache<Request>(); | 250 | 10.2k | return cache->find_as(req); | 251 | 10.2k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_29InitAccessorPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 39 | find_as(const Request &req) { | 249 | 39 | auto *cache = getCache<Request>(); | 250 | 39 | return cache->find_as(req); | 251 | 39 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31MemberwiseInitPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 33 | find_as(const Request &req) { | 249 | 33 | auto *cache = getCache<Request>(); | 250 | 33 | return cache->find_as(req); | 251 | 33 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_40StoredPropertiesAndMissingMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 17 | find_as(const Request &req) { | 249 | 17 | auto *cache = getCache<Request>(); | 250 | 17 | return cache->find_as(req); | 251 | 17 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30PropertyWrapperTypeInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_14IsActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 4.80k | find_as(const Request &req) { | 249 | 4.80k | auto *cache = getCache<Request>(); | 250 | 4.80k | return cache->find_as(req); | 251 | 4.80k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25IsDistributedActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 2.57k | find_as(const Request &req) { | 249 | 2.57k | auto *cache = getCache<Request>(); | 250 | 2.57k | return cache->find_as(req); | 251 | 2.57k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21StructuralTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_18EnumRawTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 12 | find_as(const Request &req) { | 249 | 12 | auto *cache = getCache<Request>(); | 250 | 12 | return cache->find_as(req); | 251 | 12 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24HasMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 34 | find_as(const Request &req) { | 249 | 34 | auto *cache = getCache<Request>(); | 250 | 34 | return cache->find_as(req); | 251 | 34 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31SynthesizeMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 20 | find_as(const Request &req) { | 249 | 20 | auto *cache = getCache<Request>(); | 250 | 20 | return cache->find_as(req); | 251 | 20 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_37ResolveEffectiveMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 47 | find_as(const Request &req) { | 249 | 47 | auto *cache = getCache<Request>(); | 250 | 47 | return cache->find_as(req); | 251 | 47 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21HasDefaultInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 23 | find_as(const Request &req) { | 249 | 23 | auto *cache = getCache<Request>(); | 250 | 23 | return cache->find_as(req); | 251 | 23 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28SynthesizeDefaultInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 6 | find_as(const Request &req) { | 249 | 6 | auto *cache = getCache<Request>(); | 250 | 6 | return cache->find_as(req); | 251 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26GlobalActorInstanceRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21IsDefaultActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 22 | find_as(const Request &req) { | 249 | 22 | auto *cache = getCache<Request>(); | 250 | 22 | return cache->find_as(req); | 251 | 22 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25ClassAncestryFlagsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 41 | find_as(const Request &req) { | 249 | 41 | auto *cache = getCache<Request>(); | 250 | 41 | return cache->find_as(req); | 251 | 41 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26HasCircularRawValueRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 2 | find_as(const Request &req) { | 249 | 2 | auto *cache = getCache<Request>(); | 250 | 2 | return cache->find_as(req); | 251 | 2 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_29PrimaryAssociatedTypesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 2 | find_as(const Request &req) { | 249 | 2 | auto *cache = getCache<Request>(); | 250 | 2 | return cache->find_as(req); | 251 | 2 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_29StructuralRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 10 | find_as(const Request &req) { | 249 | 10 | auto *cache = getCache<Request>(); | 250 | 10 | return cache->find_as(req); | 251 | 10 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28TypeAliasRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 5 | find_as(const Request &req) { | 249 | 5 | auto *cache = getCache<Request>(); | 250 | 5 | return cache->find_as(req); | 251 | 5 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_27ProtocolDependenciesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 2.29k | find_as(const Request &req) { | 249 | 2.29k | auto *cache = getCache<Request>(); | 250 | 2.29k | return cache->find_as(req); | 251 | 2.29k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_36HasCircularInheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 4 | find_as(const Request &req) { | 249 | 4 | auto *cache = getCache<Request>(); | 250 | 4 | return cache->find_as(req); | 251 | 4 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_17HasStorageRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 2.94k | find_as(const Request &req) { | 249 | 2.94k | auto *cache = getCache<Request>(); | 250 | 2.94k | return cache->find_as(req); | 251 | 2.94k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_22HasInitAccessorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 1.56k | find_as(const Request &req) { | 249 | 1.56k | auto *cache = getCache<Request>(); | 250 | 1.56k | return cache->find_as(req); | 251 | 1.56k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_27DefaultInitializerIsolationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 160 | find_as(const Request &req) { | 249 | 160 | auto *cache = getCache<Request>(); | 250 | 160 | return cache->find_as(req); | 251 | 160 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31AttachedPropertyWrappersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 7.11k | find_as(const Request &req) { | 249 | 7.11k | auto *cache = getCache<Request>(); | 250 | 7.11k | return cache->find_as(req); | 251 | 7.11k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_34AttachedPropertyWrapperTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 21 | find_as(const Request &req) { | 249 | 21 | auto *cache = getCache<Request>(); | 250 | 21 | return cache->find_as(req); | 251 | 21 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_41PropertyWrapperBackingPropertyTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 21 | find_as(const Request &req) { | 249 | 21 | auto *cache = getCache<Request>(); | 250 | 21 | return cache->find_as(req); | 251 | 21 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_40PropertyWrapperAuxiliaryVariablesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 53 | find_as(const Request &req) { | 249 | 53 | auto *cache = getCache<Request>(); | 250 | 53 | return cache->find_as(req); | 251 | 53 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_37PropertyWrapperInitializerInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 58 | find_as(const Request &req) { | 249 | 58 | auto *cache = getCache<Request>(); | 250 | 58 | return cache->find_as(req); | 251 | 58 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_32PropertyWrapperMutabilityRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 91 | find_as(const Request &req) { | 249 | 91 | auto *cache = getCache<Request>(); | 250 | 91 | return cache->find_as(req); | 251 | 91 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26LazyStoragePropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24ResultBuilderTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 174 | find_as(const Request &req) { | 249 | 174 | auto *cache = getCache<Request>(); | 250 | 174 | return cache->find_as(req); | 251 | 174 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28AttachedResultBuilderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 244 | find_as(const Request &req) { | 249 | 244 | auto *cache = getCache<Request>(); | 250 | 244 | return cache->find_as(req); | 251 | 244 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_18RenamedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_23FunctionOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 26 | find_as(const Request &req) { | 249 | 26 | auto *cache = getCache<Request>(); | 250 | 26 | return cache->find_as(req); | 251 | 26 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_19SimpleDidSetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_15InitKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 202 | find_as(const Request &req) { | 249 | 202 | auto *cache = getCache<Request>(); | 250 | 202 | return cache->find_as(req); | 251 | 202 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_19BodyInitKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 7 | find_as(const Request &req) { | 249 | 7 | auto *cache = getCache<Request>(); | 250 | 7 | return cache->find_as(req); | 251 | 7 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30OperatorPrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 13 | find_as(const Request &req) { | 249 | 13 | auto *cache = getCache<Request>(); | 250 | 13 | return cache->find_as(req); | 251 | 13 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21ActorIsolationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 3.51k | find_as(const Request &req) { | 249 | 3.51k | auto *cache = getCache<Request>(); | 250 | 3.51k | return cache->find_as(req); | 251 | 3.51k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31ExpandMacroExpansionExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_22MacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ DeclContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26FragileFunctionKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 554 | find_as(const Request &req) { | 249 | 554 | auto *cache = getCache<Request>(); | 250 | 554 | return cache->find_as(req); | 251 | 554 | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_19ParseMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 828 | find_as(const Request &req) { | 249 | 828 | auto *cache = getCache<Request>(); | 250 | 828 | return cache->find_as(req); | 251 | 828 | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_17ABIMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 71 | find_as(const Request &req) { | 249 | 71 | auto *cache = getCache<Request>(); | 250 | 71 | return cache->find_as(req); | 251 | 71 | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_17AllMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 19 | find_as(const Request &req) { | 249 | 19 | auto *cache = getCache<Request>(); | 250 | 19 | return cache->find_as(req); | 251 | 19 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_48GetDistributedActorArgumentDecodingMethodRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_43GetDistributedActorInvocationDecoderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26GetDistributedThunkRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_40GetDistributedActorSystemPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_36GetDistributedActorIDPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_27SemanticBriefCommentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_36PolymorphicEffectRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Effects.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28PolymorphicEffectKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 226 | find_as(const Request &req) { | 249 | 226 | auto *cache = getCache<Request>(); | 250 | 226 | return cache->find_as(req); | 251 | 226 | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_27ConformanceHasEffectRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21ClosureEffectsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ GenericSignature.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31AbstractGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 121 | find_as(const Request &req) { | 249 | 121 | auto *cache = getCache<Request>(); | 250 | 121 | return cache->find_as(req); | 251 | 121 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_22IsNonUserModuleRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28ModuleImplicitImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 17 | find_as(const Request &req) { | 249 | 17 | auto *cache = getCache<Request>(); | 250 | 17 | return cache->find_as(req); | 251 | 17 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25PrimarySourceFilesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 36 | find_as(const Request &req) { | 249 | 36 | auto *cache = getCache<Request>(); | 250 | 36 | return cache->find_as(req); | 251 | 36 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26MangleLocalTypeDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 4.59k | find_as(const Request &req) { | 249 | 4.59k | auto *cache = getCache<Request>(); | 250 | 4.59k | return cache->find_as(req); | 251 | 4.59k | } |
Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26GetImplicitSendableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 92 | find_as(const Request &req) { | 249 | 92 | auto *cache = getCache<Request>(); | 250 | 92 | return cache->find_as(req); | 251 | 92 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_41GetDistributedActorImplicitCodableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_16SPIGroupsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 3.96k | find_as(const Request &req) { | 249 | 3.96k | auto *cache = getCache<Request>(); | 250 | 3.96k | return cache->find_as(req); | 251 | 3.96k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25ModuleLibraryLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25ParseTopLevelDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 91 | find_as(const Request &req) { | 249 | 91 | auto *cache = getCache<Request>(); | 250 | 91 | return cache->find_as(req); | 251 | 91 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_25ExportedSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 14 | find_as(const Request &req) { | 249 | 14 | auto *cache = getCache<Request>(); | 250 | 14 | return cache->find_as(req); | 251 | 14 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_22GetSourceFileAsyncNodeEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 8 | find_as(const Request &req) { | 249 | 8 | auto *cache = getCache<Request>(); | 250 | 8 | return cache->find_as(req); | 251 | 8 | } |
NameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 72 | find_as(const Request &req) { | 249 | 72 | auto *cache = getCache<Request>(); | 250 | 72 | return cache->find_as(req); | 251 | 72 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ NameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_40PotentialMacroExpansionsInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 792 | find_as(const Request &req) { | 249 | 792 | auto *cache = getCache<Request>(); | 250 | 792 | return cache->find_as(req); | 251 | 792 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30IsCallAsFunctionNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ NameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_38HasDynamicMemberLookupAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 135 | find_as(const Request &req) { | 249 | 135 | auto *cache = getCache<Request>(); | 250 | 135 | return cache->find_as(req); | 251 | 135 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_34HasDynamicCallableAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_26LookupInfixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 23 | find_as(const Request &req) { | 249 | 23 | auto *cache = getCache<Request>(); | 250 | 23 | return cache->find_as(req); | 251 | 23 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_27LookupPrefixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28LookupPostfixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_28LookupPrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 13 | find_as(const Request &req) { | 249 | 13 | auto *cache = getCache<Request>(); | 250 | 13 | return cache->find_as(req); | 251 | 13 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_30ConditionalRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 656 | find_as(const Request &req) { | 249 | 656 | auto *cache = getCache<Request>(); | 250 | 656 | return cache->find_as(req); | 251 | 656 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_37LookupAllConformancesInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 336 | find_as(const Request &req) { | 249 | 336 | auto *cache = getCache<Request>(); | 250 | 336 | return cache->find_as(req); | 251 | 336 | } |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_17RawCommentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_31AbstractGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Stmt.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_24IsSingleValueStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 49 | find_as(const Request &req) { | 249 | 49 | auto *cache = getCache<Request>(); | 250 | 49 | return cache->find_as(req); | 251 | 49 | } |
Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_18BreakTargetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_21ContinueTargetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ TypeCheckRequests.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_18RequirementRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 20 | find_as(const Request &req) { | 249 | 20 | auto *cache = getCache<Request>(); | 250 | 20 | return cache->find_as(req); | 251 | 20 | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_40ExpandChildTypeRefinementContextsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ Line | Count | Source | 248 | 53 | find_as(const Request &req) { | 249 | 53 | auto *cache = getCache<Request>(); | 250 | 53 | return cache->find_as(req); | 251 | 53 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12RequestCache7find_asINS_20USRGenerationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorERKS8_ |
252 | | |
253 | | template <typename Request> |
254 | | typename llvm::DenseMap<RequestKey<Request>, |
255 | | typename Request::OutputType>::const_iterator |
256 | 70.1k | end() { |
257 | 70.1k | auto *cache = getCache<Request>(); |
258 | 70.1k | return cache->end(); |
259 | 70.1k | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator12RequestCache3endINS_22SymbolSourceMapRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN5swift9evaluator12RequestCache3endINS_20USRGenerationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator12RequestCache3endINS_18RenamedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator12RequestCache3endINS_24IDEInspectionFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator12RequestCache3endINS_24ConstantValueInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator12RequestCache3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator12RequestCache3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator12RequestCache3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator12RequestCache3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator12RequestCache3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator12RequestCache3endINS_22SymbolSourceMapRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Common.cpp:_ZN5swift9evaluator12RequestCache3endINS_28TangentStoredPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 8 | end() { | 257 | 8 | auto *cache = getCache<Request>(); | 258 | 8 | return cache->end(); | 259 | 8 | } |
Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator12RequestCache3endINS_28ProvideDefaultImplForRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache3endINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache3endINS_26ResolveProtocolNameRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache3endINS_28ProvideDefaultImplForRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache3endINS_29CollectOverriddenDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache3endINS_23IsDeclApplicableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator12RequestCache3endINS_24TypeRelationCheckRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator12RequestCache3endINS_26MangleLocalTypeDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator12RequestCache3endINS_28PreCheckResultBuilderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator12RequestCache3endINS_31ExpandMacroExpansionExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv CSRanking.cpp:_ZN5swift9evaluator12RequestCache3endINS_32CompareDeclSpecializationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 28 | end() { | 257 | 28 | auto *cache = getCache<Request>(); | 258 | 28 | return cache->end(); | 259 | 28 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12RequestCache3endINS_29EnumElementExprPatternRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator12RequestCache3endINS_34HasDynamicCallableAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv CSStep.cpp:_ZN5swift9evaluator12RequestCache3endINS_25IsDeclRefinementOfRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 71 | end() { | 257 | 71 | auto *cache = getCache<Request>(); | 258 | 71 | return cache->end(); | 259 | 71 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12RequestCache3endINS_35HasUserDefinedDesignatedInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 43 | end() { | 257 | 43 | auto *cache = getCache<Request>(); | 258 | 43 | return cache->end(); | 259 | 43 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator12RequestCache3endINS_44AreAllStoredPropertiesDefaultInitableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 17 | end() { | 257 | 17 | auto *cache = getCache<Request>(); | 258 | 17 | return cache->end(); | 259 | 17 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12RequestCache3endINS_21ClosureEffectsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator12RequestCache3endINS_31ClosureHasExplicitResultRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12RequestCache3endINS_23IsDeclApplicableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator12RequestCache3endINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator12RequestCache3endINS_25PreCheckReturnStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache3endINS_29SynthesizeMainFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache3endINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache3endINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator12RequestCache3endINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12RequestCache3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator12RequestCache3endINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12RequestCache3endINS_35DistributedModuleIsAvailableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator12RequestCache3endINS_31CheckDistributedFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_30ValidatePrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 13 | end() { | 257 | 13 | auto *cache = getCache<Request>(); | 258 | 13 | return cache->end(); | 259 | 13 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_29SynthesizeMainFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 21 | end() { | 257 | 21 | auto *cache = getCache<Request>(); | 258 | 21 | return cache->end(); | 259 | 21 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_36HasCircularInheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_26HasCircularRawValueRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_30IsABICompatibleOverrideRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator12RequestCache3endINS_34TypeCheckObjCImplementationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache3endINS_30ExternalMacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache3endINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache3endINS_22ApplyAccessNoteRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 1.00k | end() { | 257 | 1.00k | auto *cache = getCache<Request>(); | 258 | 1.00k | return cache->end(); | 259 | 1.00k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator12RequestCache3endINS_19ResolveMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator12RequestCache3endINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12RequestCache3endINS_30ExternalMacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12RequestCache3endINS_25CompilerPluginLoadRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator12RequestCache3endINS_31ExpandMacroExpansionDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv TypeCheckPattern.cpp:_ZN5swift9evaluator12RequestCache3endINS_18PatternTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 88 | end() { | 257 | 88 | auto *cache = getCache<Request>(); | 258 | 88 | return cache->end(); | 259 | 88 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12RequestCache3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator12RequestCache3endINS_31AttachedPropertyWrappersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator12RequestCache3endINS_40PotentialMacroExpansionsInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator12RequestCache3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv TypeCheckStmt.cpp:_ZN5swift9evaluator12RequestCache3endINS_25PreCheckReturnStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 62 | end() { | 257 | 62 | auto *cache = getCache<Request>(); | 258 | 62 | return cache->end(); | 259 | 62 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator12RequestCache3endINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache3endINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache3endINS_22ExpandPeerMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache3endINS_32PropertyWrapperLValuenessRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv TypeCheckStorage.cpp:_ZN5swift9evaluator12RequestCache3endINS_20ExpandAccessorMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 68 | end() { | 257 | 68 | auto *cache = getCache<Request>(); | 258 | 68 | return cache->end(); | 259 | 68 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache3endINS_49CheckInconsistentImplementationOnlyImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 13 | end() { | 257 | 13 | auto *cache = getCache<Request>(); | 258 | 13 | return cache->end(); | 259 | 13 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache3endINS_38CheckInconsistentSPIOnlyImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 13 | end() { | 257 | 13 | auto *cache = getCache<Request>(); | 258 | 13 | return cache->end(); | 259 | 13 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache3endINS_36CheckInconsistentAccessLevelOnImportEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 13 | end() { | 257 | 13 | auto *cache = getCache<Request>(); | 258 | 13 | return cache->end(); | 259 | 13 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache3endINS_41CheckInconsistentWeakLinkedImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 13 | end() { | 257 | 13 | auto *cache = getCache<Request>(); | 258 | 13 | return cache->end(); | 259 | 13 | } |
TypeChecker.cpp:_ZN5swift9evaluator12RequestCache3endINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 76 | end() { | 257 | 76 | auto *cache = getCache<Request>(); | 258 | 76 | return cache->end(); | 259 | 76 | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator12RequestCache3endINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator12RequestCache3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12RequestCache3endINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12RequestCache3endINS_30TypeEraserHasViableInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Attr.cpp:_ZN5swift9evaluator12RequestCache3endINS_31SpecializeAttrTargetDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 16 | end() { | 257 | 16 | auto *cache = getCache<Request>(); | 258 | 16 | return cache->end(); | 259 | 16 | } |
Attr.cpp:_ZN5swift9evaluator12RequestCache3endINS_33DerivativeAttrOriginalDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 26 | end() { | 257 | 26 | auto *cache = getCache<Request>(); | 258 | 26 | return cache->end(); | 259 | 26 | } |
Attr.cpp:_ZN5swift9evaluator12RequestCache3endINS_29ImplementsAttrProtocolRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 2 | end() { | 257 | 2 | auto *cache = getCache<Request>(); | 258 | 2 | return cache->end(); | 259 | 2 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator12RequestCache3endINS_38InitAccessorReferencedVariablesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator12RequestCache3endINS_33SemanticAvailableRangeAttrRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Availability.cpp:_ZN5swift9evaluator12RequestCache3endINS_30SemanticUnavailableAttrRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 459 | end() { | 257 | 459 | auto *cache = getCache<Request>(); | 258 | 459 | return cache->end(); | 259 | 459 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_27ExpandMemberAttributeMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 8.85k | end() { | 257 | 8.85k | auto *cache = getCache<Request>(); | 258 | 8.85k | return cache->end(); | 259 | 8.85k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_22ExpandPeerMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 2.52k | end() { | 257 | 2.52k | auto *cache = getCache<Request>(); | 258 | 2.52k | return cache->end(); | 259 | 2.52k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_31ExpandMacroExpansionDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_19ResolveMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 5.96k | end() { | 257 | 5.96k | auto *cache = getCache<Request>(); | 258 | 5.96k | return cache->end(); | 259 | 5.96k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_25ScopedImportLookupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_19ExtendedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 51 | end() { | 257 | 51 | auto *cache = getCache<Request>(); | 258 | 51 | return cache->end(); | 259 | 51 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_30IsABICompatibleOverrideRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 28 | end() { | 257 | 28 | auto *cache = getCache<Request>(); | 258 | 28 | return cache->end(); | 259 | 28 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_23OpaqueResultTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_30DynamicallyReplacedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 1.45k | end() { | 257 | 1.45k | auto *cache = getCache<Request>(); | 258 | 1.45k | return cache->end(); | 259 | 1.45k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_23StoredPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 10.2k | end() { | 257 | 10.2k | auto *cache = getCache<Request>(); | 258 | 10.2k | return cache->end(); | 259 | 10.2k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_29InitAccessorPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 39 | end() { | 257 | 39 | auto *cache = getCache<Request>(); | 258 | 39 | return cache->end(); | 259 | 39 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_31MemberwiseInitPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 33 | end() { | 257 | 33 | auto *cache = getCache<Request>(); | 258 | 33 | return cache->end(); | 259 | 33 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_40StoredPropertiesAndMissingMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 17 | end() { | 257 | 17 | auto *cache = getCache<Request>(); | 258 | 17 | return cache->end(); | 259 | 17 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_30PropertyWrapperTypeInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_14IsActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 4.80k | end() { | 257 | 4.80k | auto *cache = getCache<Request>(); | 258 | 4.80k | return cache->end(); | 259 | 4.80k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_25IsDistributedActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 2.57k | end() { | 257 | 2.57k | auto *cache = getCache<Request>(); | 258 | 2.57k | return cache->end(); | 259 | 2.57k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_21StructuralTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_18EnumRawTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 12 | end() { | 257 | 12 | auto *cache = getCache<Request>(); | 258 | 12 | return cache->end(); | 259 | 12 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_24HasMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 34 | end() { | 257 | 34 | auto *cache = getCache<Request>(); | 258 | 34 | return cache->end(); | 259 | 34 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_31SynthesizeMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 20 | end() { | 257 | 20 | auto *cache = getCache<Request>(); | 258 | 20 | return cache->end(); | 259 | 20 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_37ResolveEffectiveMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 47 | end() { | 257 | 47 | auto *cache = getCache<Request>(); | 258 | 47 | return cache->end(); | 259 | 47 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_21HasDefaultInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 23 | end() { | 257 | 23 | auto *cache = getCache<Request>(); | 258 | 23 | return cache->end(); | 259 | 23 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_28SynthesizeDefaultInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 6 | end() { | 257 | 6 | auto *cache = getCache<Request>(); | 258 | 6 | return cache->end(); | 259 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_26GlobalActorInstanceRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_21IsDefaultActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 22 | end() { | 257 | 22 | auto *cache = getCache<Request>(); | 258 | 22 | return cache->end(); | 259 | 22 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_25ClassAncestryFlagsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 41 | end() { | 257 | 41 | auto *cache = getCache<Request>(); | 258 | 41 | return cache->end(); | 259 | 41 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_26HasCircularRawValueRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 2 | end() { | 257 | 2 | auto *cache = getCache<Request>(); | 258 | 2 | return cache->end(); | 259 | 2 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_29PrimaryAssociatedTypesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 2 | end() { | 257 | 2 | auto *cache = getCache<Request>(); | 258 | 2 | return cache->end(); | 259 | 2 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_29StructuralRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 10 | end() { | 257 | 10 | auto *cache = getCache<Request>(); | 258 | 10 | return cache->end(); | 259 | 10 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_28TypeAliasRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 5 | end() { | 257 | 5 | auto *cache = getCache<Request>(); | 258 | 5 | return cache->end(); | 259 | 5 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_27ProtocolDependenciesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 2.29k | end() { | 257 | 2.29k | auto *cache = getCache<Request>(); | 258 | 2.29k | return cache->end(); | 259 | 2.29k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_36HasCircularInheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 4 | end() { | 257 | 4 | auto *cache = getCache<Request>(); | 258 | 4 | return cache->end(); | 259 | 4 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_17HasStorageRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 2.94k | end() { | 257 | 2.94k | auto *cache = getCache<Request>(); | 258 | 2.94k | return cache->end(); | 259 | 2.94k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_22HasInitAccessorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 1.56k | end() { | 257 | 1.56k | auto *cache = getCache<Request>(); | 258 | 1.56k | return cache->end(); | 259 | 1.56k | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_27DefaultInitializerIsolationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 160 | end() { | 257 | 160 | auto *cache = getCache<Request>(); | 258 | 160 | return cache->end(); | 259 | 160 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_31AttachedPropertyWrappersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 7.11k | end() { | 257 | 7.11k | auto *cache = getCache<Request>(); | 258 | 7.11k | return cache->end(); | 259 | 7.11k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_34AttachedPropertyWrapperTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 21 | end() { | 257 | 21 | auto *cache = getCache<Request>(); | 258 | 21 | return cache->end(); | 259 | 21 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_41PropertyWrapperBackingPropertyTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 21 | end() { | 257 | 21 | auto *cache = getCache<Request>(); | 258 | 21 | return cache->end(); | 259 | 21 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_40PropertyWrapperAuxiliaryVariablesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 53 | end() { | 257 | 53 | auto *cache = getCache<Request>(); | 258 | 53 | return cache->end(); | 259 | 53 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_37PropertyWrapperInitializerInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 58 | end() { | 257 | 58 | auto *cache = getCache<Request>(); | 258 | 58 | return cache->end(); | 259 | 58 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_32PropertyWrapperMutabilityRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 91 | end() { | 257 | 91 | auto *cache = getCache<Request>(); | 258 | 91 | return cache->end(); | 259 | 91 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_26LazyStoragePropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_24ResultBuilderTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 174 | end() { | 257 | 174 | auto *cache = getCache<Request>(); | 258 | 174 | return cache->end(); | 259 | 174 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_28AttachedResultBuilderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 244 | end() { | 257 | 244 | auto *cache = getCache<Request>(); | 258 | 244 | return cache->end(); | 259 | 244 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_18RenamedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_23FunctionOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 26 | end() { | 257 | 26 | auto *cache = getCache<Request>(); | 258 | 26 | return cache->end(); | 259 | 26 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_19SimpleDidSetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_15InitKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 202 | end() { | 257 | 202 | auto *cache = getCache<Request>(); | 258 | 202 | return cache->end(); | 259 | 202 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_19BodyInitKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 7 | end() { | 257 | 7 | auto *cache = getCache<Request>(); | 258 | 7 | return cache->end(); | 259 | 7 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_30OperatorPrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 13 | end() { | 257 | 13 | auto *cache = getCache<Request>(); | 258 | 13 | return cache->end(); | 259 | 13 | } |
Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_21ActorIsolationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 3.51k | end() { | 257 | 3.51k | auto *cache = getCache<Request>(); | 258 | 3.51k | return cache->end(); | 259 | 3.51k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_31ExpandMacroExpansionExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator12RequestCache3endINS_22MacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv DeclContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_26FragileFunctionKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 554 | end() { | 257 | 554 | auto *cache = getCache<Request>(); | 258 | 554 | return cache->end(); | 259 | 554 | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_19ParseMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 828 | end() { | 257 | 828 | auto *cache = getCache<Request>(); | 258 | 828 | return cache->end(); | 259 | 828 | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_17ABIMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 71 | end() { | 257 | 71 | auto *cache = getCache<Request>(); | 258 | 71 | return cache->end(); | 259 | 71 | } |
DeclContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_17AllMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 19 | end() { | 257 | 19 | auto *cache = getCache<Request>(); | 258 | 19 | return cache->end(); | 259 | 19 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_48GetDistributedActorArgumentDecodingMethodRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_43GetDistributedActorInvocationDecoderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_26GetDistributedThunkRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_40GetDistributedActorSystemPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator12RequestCache3endINS_36GetDistributedActorIDPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator12RequestCache3endINS_27SemanticBriefCommentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12RequestCache3endINS_36PolymorphicEffectRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Effects.cpp:_ZN5swift9evaluator12RequestCache3endINS_28PolymorphicEffectKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 226 | end() { | 257 | 226 | auto *cache = getCache<Request>(); | 258 | 226 | return cache->end(); | 259 | 226 | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator12RequestCache3endINS_27ConformanceHasEffectRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12RequestCache3endINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator12RequestCache3endINS_21ClosureEffectsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv GenericSignature.cpp:_ZN5swift9evaluator12RequestCache3endINS_31AbstractGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 121 | end() { | 257 | 121 | auto *cache = getCache<Request>(); | 258 | 121 | return cache->end(); | 259 | 121 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_22IsNonUserModuleRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_28ModuleImplicitImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 17 | end() { | 257 | 17 | auto *cache = getCache<Request>(); | 258 | 17 | return cache->end(); | 259 | 17 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_25PrimarySourceFilesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 36 | end() { | 257 | 36 | auto *cache = getCache<Request>(); | 258 | 36 | return cache->end(); | 259 | 36 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_26MangleLocalTypeDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 4.59k | end() { | 257 | 4.59k | auto *cache = getCache<Request>(); | 258 | 4.59k | return cache->end(); | 259 | 4.59k | } |
Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_26GetImplicitSendableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 92 | end() { | 257 | 92 | auto *cache = getCache<Request>(); | 258 | 92 | return cache->end(); | 259 | 92 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_41GetDistributedActorImplicitCodableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_16SPIGroupsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 3.96k | end() { | 257 | 3.96k | auto *cache = getCache<Request>(); | 258 | 3.96k | return cache->end(); | 259 | 3.96k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_25ModuleLibraryLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_25ParseTopLevelDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 91 | end() { | 257 | 91 | auto *cache = getCache<Request>(); | 258 | 91 | return cache->end(); | 259 | 91 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_25ExportedSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 14 | end() { | 257 | 14 | auto *cache = getCache<Request>(); | 258 | 14 | return cache->end(); | 259 | 14 | } |
Module.cpp:_ZN5swift9evaluator12RequestCache3endINS_22GetSourceFileAsyncNodeEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 8 | end() { | 257 | 8 | auto *cache = getCache<Request>(); | 258 | 8 | return cache->end(); | 259 | 8 | } |
NameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 72 | end() { | 257 | 72 | auto *cache = getCache<Request>(); | 258 | 72 | return cache->end(); | 259 | 72 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv NameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_40PotentialMacroExpansionsInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 792 | end() { | 257 | 792 | auto *cache = getCache<Request>(); | 258 | 792 | return cache->end(); | 259 | 792 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_30IsCallAsFunctionNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv NameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_38HasDynamicMemberLookupAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 135 | end() { | 257 | 135 | auto *cache = getCache<Request>(); | 258 | 135 | return cache->end(); | 259 | 135 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_34HasDynamicCallableAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_26LookupInfixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 23 | end() { | 257 | 23 | auto *cache = getCache<Request>(); | 258 | 23 | return cache->end(); | 259 | 23 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_27LookupPrefixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_28LookupPostfixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv OperatorNameLookup.cpp:_ZN5swift9evaluator12RequestCache3endINS_28LookupPrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 13 | end() { | 257 | 13 | auto *cache = getCache<Request>(); | 258 | 13 | return cache->end(); | 259 | 13 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12RequestCache3endINS_30ConditionalRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 656 | end() { | 257 | 656 | auto *cache = getCache<Request>(); | 258 | 656 | return cache->end(); | 259 | 656 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator12RequestCache3endINS_37LookupAllConformancesInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 336 | end() { | 257 | 336 | auto *cache = getCache<Request>(); | 258 | 336 | return cache->end(); | 259 | 336 | } |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator12RequestCache3endINS_17RawCommentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator12RequestCache3endINS_31AbstractGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Stmt.cpp:_ZN5swift9evaluator12RequestCache3endINS_24IsSingleValueStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 49 | end() { | 257 | 49 | auto *cache = getCache<Request>(); | 258 | 49 | return cache->end(); | 259 | 49 | } |
Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12RequestCache3endINS_18BreakTargetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator12RequestCache3endINS_21ContinueTargetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv TypeCheckRequests.cpp:_ZN5swift9evaluator12RequestCache3endINS_18RequirementRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 20 | end() { | 257 | 20 | auto *cache = getCache<Request>(); | 258 | 20 | return cache->end(); | 259 | 20 | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator12RequestCache3endINS_40ExpandChildTypeRefinementContextsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv Line | Count | Source | 256 | 53 | end() { | 257 | 53 | auto *cache = getCache<Request>(); | 258 | 53 | return cache->end(); | 259 | 53 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator12RequestCache3endINS_20USRGenerationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENS8_10OutputTypeENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SA_EEE14const_iteratorEv |
260 | | |
261 | | template <typename Request> |
262 | 28.1k | void insert(Request req, typename Request::OutputType val) { |
263 | 28.1k | auto *cache = getCache<Request>(); |
264 | 28.1k | auto result = cache->insert({RequestKey<Request>(std::move(req)), |
265 | 28.1k | std::move(val)}); |
266 | 28.1k | assert(result.second && "Request result was already cached"); |
267 | 0 | (void) result; |
268 | 28.1k | } Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_20USRGenerationRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_24IDEInspectionFileRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_24ConstantValueInfoRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_26CustomRefCountingOperationEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_22SymbolSourceMapRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_26ResolveProtocolNameRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_28ProvideDefaultImplForRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_29CollectOverriddenDeclsRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_23IsDeclApplicableRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_24TypeRelationCheckRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_28PreCheckResultBuilderRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_32CompareDeclSpecializationRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 14 | void insert(Request req, typename Request::OutputType val) { | 263 | 14 | auto *cache = getCache<Request>(); | 264 | 14 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 14 | std::move(val)}); | 266 | 14 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 14 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_29EnumElementExprPatternRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_25IsDeclRefinementOfRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 37 | void insert(Request req, typename Request::OutputType val) { | 263 | 37 | auto *cache = getCache<Request>(); | 264 | 37 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 37 | std::move(val)}); | 266 | 37 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 37 | } |
_ZN5swift9evaluator12RequestCache6insertINS_35HasUserDefinedDesignatedInitRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 23 | void insert(Request req, typename Request::OutputType val) { | 263 | 23 | auto *cache = getCache<Request>(); | 264 | 23 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 23 | std::move(val)}); | 266 | 23 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 23 | } |
_ZN5swift9evaluator12RequestCache6insertINS_44AreAllStoredPropertiesDefaultInitableRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 17 | void insert(Request req, typename Request::OutputType val) { | 263 | 17 | auto *cache = getCache<Request>(); | 264 | 17 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 17 | std::move(val)}); | 266 | 17 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 17 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_31ClosureHasExplicitResultRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_28TangentStoredPropertyRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 4 | void insert(Request req, typename Request::OutputType val) { | 263 | 4 | auto *cache = getCache<Request>(); | 264 | 4 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 4 | std::move(val)}); | 266 | 4 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_35DistributedModuleIsAvailableRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_31CheckDistributedFunctionRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_30ValidatePrecedenceGroupRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 13 | void insert(Request req, typename Request::OutputType val) { | 263 | 13 | auto *cache = getCache<Request>(); | 264 | 13 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 13 | std::move(val)}); | 266 | 13 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 13 | } |
_ZN5swift9evaluator12RequestCache6insertINS_29SynthesizeMainFunctionRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 15 | void insert(Request req, typename Request::OutputType val) { | 263 | 15 | auto *cache = getCache<Request>(); | 264 | 15 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 15 | std::move(val)}); | 266 | 15 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 15 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_34TypeCheckObjCImplementationRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_22ApplyAccessNoteRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 446 | void insert(Request req, typename Request::OutputType val) { | 263 | 446 | auto *cache = getCache<Request>(); | 264 | 446 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 446 | std::move(val)}); | 266 | 446 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 446 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_30ExternalMacroDefinitionRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_25CompilerPluginLoadRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_18PatternTypeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 46 | void insert(Request req, typename Request::OutputType val) { | 263 | 46 | auto *cache = getCache<Request>(); | 264 | 46 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 46 | std::move(val)}); | 266 | 46 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 46 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_24CustomAttrNominalRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_25PreCheckReturnStmtRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 62 | void insert(Request req, typename Request::OutputType val) { | 263 | 62 | auto *cache = getCache<Request>(); | 264 | 62 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 62 | std::move(val)}); | 266 | 62 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 62 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_32PropertyWrapperLValuenessRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_20ExpandAccessorMacrosEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 68 | void insert(Request req, typename Request::OutputType val) { | 263 | 68 | auto *cache = getCache<Request>(); | 264 | 68 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 68 | std::move(val)}); | 266 | 68 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 68 | } |
_ZN5swift9evaluator12RequestCache6insertINS_49CheckInconsistentImplementationOnlyImportsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 13 | void insert(Request req, typename Request::OutputType val) { | 263 | 13 | auto *cache = getCache<Request>(); | 264 | 13 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 13 | std::move(val)}); | 266 | 13 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 13 | } |
_ZN5swift9evaluator12RequestCache6insertINS_38CheckInconsistentSPIOnlyImportsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 13 | void insert(Request req, typename Request::OutputType val) { | 263 | 13 | auto *cache = getCache<Request>(); | 264 | 13 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 13 | std::move(val)}); | 266 | 13 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 13 | } |
_ZN5swift9evaluator12RequestCache6insertINS_36CheckInconsistentAccessLevelOnImportEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 13 | void insert(Request req, typename Request::OutputType val) { | 263 | 13 | auto *cache = getCache<Request>(); | 264 | 13 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 13 | std::move(val)}); | 266 | 13 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 13 | } |
_ZN5swift9evaluator12RequestCache6insertINS_41CheckInconsistentWeakLinkedImportsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 13 | void insert(Request req, typename Request::OutputType val) { | 263 | 13 | auto *cache = getCache<Request>(); | 264 | 13 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 13 | std::move(val)}); | 266 | 13 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 13 | } |
_ZN5swift9evaluator12RequestCache6insertINS_31InferredGenericSignatureRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 76 | void insert(Request req, typename Request::OutputType val) { | 263 | 76 | auto *cache = getCache<Request>(); | 264 | 76 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 76 | std::move(val)}); | 266 | 76 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 76 | } |
_ZN5swift9evaluator12RequestCache6insertINS_17HasStorageRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 561 | void insert(Request req, typename Request::OutputType val) { | 263 | 561 | auto *cache = getCache<Request>(); | 264 | 561 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 561 | std::move(val)}); | 266 | 561 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 561 | } |
_ZN5swift9evaluator12RequestCache6insertINS_19ExtendedTypeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 1.64k | void insert(Request req, typename Request::OutputType val) { | 263 | 1.64k | auto *cache = getCache<Request>(); | 264 | 1.64k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 1.64k | std::move(val)}); | 266 | 1.64k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 1.64k | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_24ResolveMacroConformancesEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_30TypeEraserHasViableInitRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_31SpecializeAttrTargetDeclRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 16 | void insert(Request req, typename Request::OutputType val) { | 263 | 16 | auto *cache = getCache<Request>(); | 264 | 16 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 16 | std::move(val)}); | 266 | 16 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 16 | } |
_ZN5swift9evaluator12RequestCache6insertINS_33DerivativeAttrOriginalDeclRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 8 | void insert(Request req, typename Request::OutputType val) { | 263 | 8 | auto *cache = getCache<Request>(); | 264 | 8 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 8 | std::move(val)}); | 266 | 8 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 8 | } |
_ZN5swift9evaluator12RequestCache6insertINS_29ImplementsAttrProtocolRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 17 | void insert(Request req, typename Request::OutputType val) { | 263 | 17 | auto *cache = getCache<Request>(); | 264 | 17 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 17 | std::move(val)}); | 266 | 17 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 17 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_38InitAccessorReferencedVariablesRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_33SemanticAvailableRangeAttrRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_30SemanticUnavailableAttrRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 175 | void insert(Request req, typename Request::OutputType val) { | 263 | 175 | auto *cache = getCache<Request>(); | 264 | 175 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 175 | std::move(val)}); | 266 | 175 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 175 | } |
_ZN5swift9evaluator12RequestCache6insertINS_27ExpandMemberAttributeMacrosEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 5.52k | void insert(Request req, typename Request::OutputType val) { | 263 | 5.52k | auto *cache = getCache<Request>(); | 264 | 5.52k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 5.52k | std::move(val)}); | 266 | 5.52k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 5.52k | } |
_ZN5swift9evaluator12RequestCache6insertINS_22ExpandPeerMacroRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 1.81k | void insert(Request req, typename Request::OutputType val) { | 263 | 1.81k | auto *cache = getCache<Request>(); | 264 | 1.81k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 1.81k | std::move(val)}); | 266 | 1.81k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 1.81k | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_31ExpandMacroExpansionDeclRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_19ResolveMacroRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_27GlobalActorAttributeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 1.17k | void insert(Request req, typename Request::OutputType val) { | 263 | 1.17k | auto *cache = getCache<Request>(); | 264 | 1.17k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 1.17k | std::move(val)}); | 266 | 1.17k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 1.17k | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_25ScopedImportLookupRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_30IsABICompatibleOverrideRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 7 | void insert(Request req, typename Request::OutputType val) { | 263 | 7 | auto *cache = getCache<Request>(); | 264 | 7 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 7 | std::move(val)}); | 266 | 7 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 7 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_26LocalDiscriminatorsRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_23OpaqueResultTypeRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_30DynamicallyReplacedDeclRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 1.02k | void insert(Request req, typename Request::OutputType val) { | 263 | 1.02k | auto *cache = getCache<Request>(); | 264 | 1.02k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 1.02k | std::move(val)}); | 266 | 1.02k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 1.02k | } |
_ZN5swift9evaluator12RequestCache6insertINS_23StoredPropertiesRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 91 | void insert(Request req, typename Request::OutputType val) { | 263 | 91 | auto *cache = getCache<Request>(); | 264 | 91 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 91 | std::move(val)}); | 266 | 91 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 91 | } |
_ZN5swift9evaluator12RequestCache6insertINS_29InitAccessorPropertiesRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 19 | void insert(Request req, typename Request::OutputType val) { | 263 | 19 | auto *cache = getCache<Request>(); | 264 | 19 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 19 | std::move(val)}); | 266 | 19 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 19 | } |
_ZN5swift9evaluator12RequestCache6insertINS_31MemberwiseInitPropertiesRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 22 | void insert(Request req, typename Request::OutputType val) { | 263 | 22 | auto *cache = getCache<Request>(); | 264 | 22 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 22 | std::move(val)}); | 266 | 22 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 22 | } |
_ZN5swift9evaluator12RequestCache6insertINS_40StoredPropertiesAndMissingMembersRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 4 | void insert(Request req, typename Request::OutputType val) { | 263 | 4 | auto *cache = getCache<Request>(); | 264 | 4 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 4 | std::move(val)}); | 266 | 4 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_30PropertyWrapperTypeInfoRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_14IsActorRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 299 | void insert(Request req, typename Request::OutputType val) { | 263 | 299 | auto *cache = getCache<Request>(); | 264 | 299 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 299 | std::move(val)}); | 266 | 299 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 299 | } |
_ZN5swift9evaluator12RequestCache6insertINS_25IsDistributedActorRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 347 | void insert(Request req, typename Request::OutputType val) { | 263 | 347 | auto *cache = getCache<Request>(); | 264 | 347 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 347 | std::move(val)}); | 266 | 347 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 347 | } |
_ZN5swift9evaluator12RequestCache6insertINS_21StructuralTypeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 344 | void insert(Request req, typename Request::OutputType val) { | 263 | 344 | auto *cache = getCache<Request>(); | 264 | 344 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 344 | std::move(val)}); | 266 | 344 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 344 | } |
_ZN5swift9evaluator12RequestCache6insertINS_18EnumRawTypeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 244 | void insert(Request req, typename Request::OutputType val) { | 263 | 244 | auto *cache = getCache<Request>(); | 264 | 244 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 244 | std::move(val)}); | 266 | 244 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 244 | } |
_ZN5swift9evaluator12RequestCache6insertINS_24HasMemberwiseInitRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 20 | void insert(Request req, typename Request::OutputType val) { | 263 | 20 | auto *cache = getCache<Request>(); | 264 | 20 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 20 | std::move(val)}); | 266 | 20 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 20 | } |
_ZN5swift9evaluator12RequestCache6insertINS_31SynthesizeMemberwiseInitRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 11 | void insert(Request req, typename Request::OutputType val) { | 263 | 11 | auto *cache = getCache<Request>(); | 264 | 11 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 11 | std::move(val)}); | 266 | 11 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 11 | } |
_ZN5swift9evaluator12RequestCache6insertINS_37ResolveEffectiveMemberwiseInitRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 14 | void insert(Request req, typename Request::OutputType val) { | 263 | 14 | auto *cache = getCache<Request>(); | 264 | 14 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 14 | std::move(val)}); | 266 | 14 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 14 | } |
_ZN5swift9evaluator12RequestCache6insertINS_21HasDefaultInitRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 23 | void insert(Request req, typename Request::OutputType val) { | 263 | 23 | auto *cache = getCache<Request>(); | 264 | 23 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 23 | std::move(val)}); | 266 | 23 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 23 | } |
_ZN5swift9evaluator12RequestCache6insertINS_28SynthesizeDefaultInitRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 6 | void insert(Request req, typename Request::OutputType val) { | 263 | 6 | auto *cache = getCache<Request>(); | 264 | 6 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 6 | std::move(val)}); | 266 | 6 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 6 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_26GlobalActorInstanceRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_21IsDefaultActorRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 1 | void insert(Request req, typename Request::OutputType val) { | 263 | 1 | auto *cache = getCache<Request>(); | 264 | 1 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 1 | std::move(val)}); | 266 | 1 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 1 | } |
_ZN5swift9evaluator12RequestCache6insertINS_25ClassAncestryFlagsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 5 | void insert(Request req, typename Request::OutputType val) { | 263 | 5 | auto *cache = getCache<Request>(); | 264 | 5 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 5 | std::move(val)}); | 266 | 5 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 5 | } |
_ZN5swift9evaluator12RequestCache6insertINS_26HasCircularRawValueRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 2 | void insert(Request req, typename Request::OutputType val) { | 263 | 2 | auto *cache = getCache<Request>(); | 264 | 2 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 2 | std::move(val)}); | 266 | 2 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 2 | } |
_ZN5swift9evaluator12RequestCache6insertINS_29PrimaryAssociatedTypesRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 2 | void insert(Request req, typename Request::OutputType val) { | 263 | 2 | auto *cache = getCache<Request>(); | 264 | 2 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 2 | std::move(val)}); | 266 | 2 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 2 | } |
_ZN5swift9evaluator12RequestCache6insertINS_29StructuralRequirementsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 5 | void insert(Request req, typename Request::OutputType val) { | 263 | 5 | auto *cache = getCache<Request>(); | 264 | 5 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 5 | std::move(val)}); | 266 | 5 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 5 | } |
_ZN5swift9evaluator12RequestCache6insertINS_28TypeAliasRequirementsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 5 | void insert(Request req, typename Request::OutputType val) { | 263 | 5 | auto *cache = getCache<Request>(); | 264 | 5 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 5 | std::move(val)}); | 266 | 5 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 5 | } |
_ZN5swift9evaluator12RequestCache6insertINS_27ProtocolDependenciesRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 208 | void insert(Request req, typename Request::OutputType val) { | 263 | 208 | auto *cache = getCache<Request>(); | 264 | 208 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 208 | std::move(val)}); | 266 | 208 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 208 | } |
_ZN5swift9evaluator12RequestCache6insertINS_36HasCircularInheritedProtocolsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 4 | void insert(Request req, typename Request::OutputType val) { | 263 | 4 | auto *cache = getCache<Request>(); | 264 | 4 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 4 | std::move(val)}); | 266 | 4 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 4 | } |
_ZN5swift9evaluator12RequestCache6insertINS_22HasInitAccessorRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 408 | void insert(Request req, typename Request::OutputType val) { | 263 | 408 | auto *cache = getCache<Request>(); | 264 | 408 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 408 | std::move(val)}); | 266 | 408 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 408 | } |
_ZN5swift9evaluator12RequestCache6insertINS_27DefaultInitializerIsolationEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 4.29k | void insert(Request req, typename Request::OutputType val) { | 263 | 4.29k | auto *cache = getCache<Request>(); | 264 | 4.29k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 4.29k | std::move(val)}); | 266 | 4.29k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 4.29k | } |
_ZN5swift9evaluator12RequestCache6insertINS_31AttachedPropertyWrappersRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 2.90k | void insert(Request req, typename Request::OutputType val) { | 263 | 2.90k | auto *cache = getCache<Request>(); | 264 | 2.90k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 2.90k | std::move(val)}); | 266 | 2.90k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 2.90k | } |
_ZN5swift9evaluator12RequestCache6insertINS_34AttachedPropertyWrapperTypeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 21 | void insert(Request req, typename Request::OutputType val) { | 263 | 21 | auto *cache = getCache<Request>(); | 264 | 21 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 21 | std::move(val)}); | 266 | 21 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 21 | } |
_ZN5swift9evaluator12RequestCache6insertINS_41PropertyWrapperBackingPropertyTypeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 21 | void insert(Request req, typename Request::OutputType val) { | 263 | 21 | auto *cache = getCache<Request>(); | 264 | 21 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 21 | std::move(val)}); | 266 | 21 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 21 | } |
_ZN5swift9evaluator12RequestCache6insertINS_40PropertyWrapperAuxiliaryVariablesRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 40 | void insert(Request req, typename Request::OutputType val) { | 263 | 40 | auto *cache = getCache<Request>(); | 264 | 40 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 40 | std::move(val)}); | 266 | 40 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 40 | } |
_ZN5swift9evaluator12RequestCache6insertINS_37PropertyWrapperInitializerInfoRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 40 | void insert(Request req, typename Request::OutputType val) { | 263 | 40 | auto *cache = getCache<Request>(); | 264 | 40 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 40 | std::move(val)}); | 266 | 40 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 40 | } |
_ZN5swift9evaluator12RequestCache6insertINS_32PropertyWrapperMutabilityRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 51 | void insert(Request req, typename Request::OutputType val) { | 263 | 51 | auto *cache = getCache<Request>(); | 264 | 51 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 51 | std::move(val)}); | 266 | 51 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 51 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_26LazyStoragePropertyRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_24ResultBuilderTypeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 98 | void insert(Request req, typename Request::OutputType val) { | 263 | 98 | auto *cache = getCache<Request>(); | 264 | 98 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 98 | std::move(val)}); | 266 | 98 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 98 | } |
_ZN5swift9evaluator12RequestCache6insertINS_28AttachedResultBuilderRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 179 | void insert(Request req, typename Request::OutputType val) { | 263 | 179 | auto *cache = getCache<Request>(); | 264 | 179 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 179 | std::move(val)}); | 266 | 179 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 179 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_18RenamedDeclRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_23FunctionOperatorRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 1.59k | void insert(Request req, typename Request::OutputType val) { | 263 | 1.59k | auto *cache = getCache<Request>(); | 264 | 1.59k | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 1.59k | std::move(val)}); | 266 | 1.59k | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 1.59k | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_19SimpleDidSetRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_15InitKindRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 355 | void insert(Request req, typename Request::OutputType val) { | 263 | 355 | auto *cache = getCache<Request>(); | 264 | 355 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 355 | std::move(val)}); | 266 | 355 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 355 | } |
_ZN5swift9evaluator12RequestCache6insertINS_19BodyInitKindRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 6 | void insert(Request req, typename Request::OutputType val) { | 263 | 6 | auto *cache = getCache<Request>(); | 264 | 6 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 6 | std::move(val)}); | 266 | 6 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 6 | } |
_ZN5swift9evaluator12RequestCache6insertINS_30OperatorPrecedenceGroupRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 94 | void insert(Request req, typename Request::OutputType val) { | 263 | 94 | auto *cache = getCache<Request>(); | 264 | 94 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 94 | std::move(val)}); | 266 | 94 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 94 | } |
_ZN5swift9evaluator12RequestCache6insertINS_21ActorIsolationRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 934 | void insert(Request req, typename Request::OutputType val) { | 263 | 934 | auto *cache = getCache<Request>(); | 264 | 934 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 934 | std::move(val)}); | 266 | 934 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 934 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_31ExpandMacroExpansionExprRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_22MacroDefinitionRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_26FragileFunctionKindRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 205 | void insert(Request req, typename Request::OutputType val) { | 263 | 205 | auto *cache = getCache<Request>(); | 264 | 205 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 205 | std::move(val)}); | 266 | 205 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 205 | } |
_ZN5swift9evaluator12RequestCache6insertINS_19ParseMembersRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 46 | void insert(Request req, typename Request::OutputType val) { | 263 | 46 | auto *cache = getCache<Request>(); | 264 | 46 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 46 | std::move(val)}); | 266 | 46 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 46 | } |
_ZN5swift9evaluator12RequestCache6insertINS_17ABIMembersRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 44 | void insert(Request req, typename Request::OutputType val) { | 263 | 44 | auto *cache = getCache<Request>(); | 264 | 44 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 44 | std::move(val)}); | 266 | 44 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 44 | } |
_ZN5swift9evaluator12RequestCache6insertINS_17AllMembersRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 12 | void insert(Request req, typename Request::OutputType val) { | 263 | 12 | auto *cache = getCache<Request>(); | 264 | 12 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 12 | std::move(val)}); | 266 | 12 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 12 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_48GetDistributedActorArgumentDecodingMethodRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_43GetDistributedActorInvocationDecoderRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_26GetDistributedThunkRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_40GetDistributedActorSystemPropertyRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_36GetDistributedActorIDPropertyRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_27SemanticBriefCommentRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_36PolymorphicEffectRequirementsRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_28PolymorphicEffectKindRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 74 | void insert(Request req, typename Request::OutputType val) { | 263 | 74 | auto *cache = getCache<Request>(); | 264 | 74 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 74 | std::move(val)}); | 266 | 74 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 74 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_27ConformanceHasEffectRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_21ClosureEffectsRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_31AbstractGenericSignatureRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 35 | void insert(Request req, typename Request::OutputType val) { | 263 | 35 | auto *cache = getCache<Request>(); | 264 | 35 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 35 | std::move(val)}); | 266 | 35 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 35 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_22IsNonUserModuleRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_28ModuleImplicitImportsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 14 | void insert(Request req, typename Request::OutputType val) { | 263 | 14 | auto *cache = getCache<Request>(); | 264 | 14 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 14 | std::move(val)}); | 266 | 14 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 14 | } |
_ZN5swift9evaluator12RequestCache6insertINS_25PrimarySourceFilesRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 12 | void insert(Request req, typename Request::OutputType val) { | 263 | 12 | auto *cache = getCache<Request>(); | 264 | 12 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 12 | std::move(val)}); | 266 | 12 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 12 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_26MangleLocalTypeDeclRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_21ExpandExtensionMacrosEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 89 | void insert(Request req, typename Request::OutputType val) { | 263 | 89 | auto *cache = getCache<Request>(); | 264 | 89 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 89 | std::move(val)}); | 266 | 89 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 89 | } |
_ZN5swift9evaluator12RequestCache6insertINS_26GetImplicitSendableRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 39 | void insert(Request req, typename Request::OutputType val) { | 263 | 39 | auto *cache = getCache<Request>(); | 264 | 39 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 39 | std::move(val)}); | 266 | 39 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 39 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_41GetDistributedActorImplicitCodableRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_16SPIGroupsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 961 | void insert(Request req, typename Request::OutputType val) { | 263 | 961 | auto *cache = getCache<Request>(); | 264 | 961 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 961 | std::move(val)}); | 266 | 961 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 961 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_25ModuleLibraryLevelRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_25ParseTopLevelDeclsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 17 | void insert(Request req, typename Request::OutputType val) { | 263 | 17 | auto *cache = getCache<Request>(); | 264 | 17 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 17 | std::move(val)}); | 266 | 17 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 17 | } |
_ZN5swift9evaluator12RequestCache6insertINS_25ExportedSourceFileRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 14 | void insert(Request req, typename Request::OutputType val) { | 263 | 14 | auto *cache = getCache<Request>(); | 264 | 14 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 14 | std::move(val)}); | 266 | 14 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 14 | } |
_ZN5swift9evaluator12RequestCache6insertINS_22GetSourceFileAsyncNodeEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 4 | void insert(Request req, typename Request::OutputType val) { | 263 | 4 | auto *cache = getCache<Request>(); | 264 | 4 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 4 | std::move(val)}); | 266 | 4 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 4 | } |
_ZN5swift9evaluator12RequestCache6insertINS_35ExpandSynthesizedMemberMacroRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 34 | void insert(Request req, typename Request::OutputType val) { | 263 | 34 | auto *cache = getCache<Request>(); | 264 | 34 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 34 | std::move(val)}); | 266 | 34 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 34 | } |
_ZN5swift9evaluator12RequestCache6insertINS_40PotentialMacroExpansionsInContextRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 699 | void insert(Request req, typename Request::OutputType val) { | 263 | 699 | auto *cache = getCache<Request>(); | 264 | 699 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 699 | std::move(val)}); | 266 | 699 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 699 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_30IsCallAsFunctionNominalRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_38HasDynamicMemberLookupAttributeRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 73 | void insert(Request req, typename Request::OutputType val) { | 263 | 73 | auto *cache = getCache<Request>(); | 264 | 73 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 73 | std::move(val)}); | 266 | 73 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 73 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_34HasDynamicCallableAttributeRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_26LookupInfixOperatorRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 10 | void insert(Request req, typename Request::OutputType val) { | 263 | 10 | auto *cache = getCache<Request>(); | 264 | 10 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 10 | std::move(val)}); | 266 | 10 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 10 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_27LookupPrefixOperatorRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_28LookupPostfixOperatorRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_28LookupPrecedenceGroupRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 4 | void insert(Request req, typename Request::OutputType val) { | 263 | 4 | auto *cache = getCache<Request>(); | 264 | 4 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 4 | std::move(val)}); | 266 | 4 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 4 | } |
_ZN5swift9evaluator12RequestCache6insertINS_30ConditionalRequirementsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 107 | void insert(Request req, typename Request::OutputType val) { | 263 | 107 | auto *cache = getCache<Request>(); | 264 | 107 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 107 | std::move(val)}); | 266 | 107 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 107 | } |
_ZN5swift9evaluator12RequestCache6insertINS_37LookupAllConformancesInContextRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 54 | void insert(Request req, typename Request::OutputType val) { | 263 | 54 | auto *cache = getCache<Request>(); | 264 | 54 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 54 | std::move(val)}); | 266 | 54 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 54 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_17RawCommentRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_24IsSingleValueStmtRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 49 | void insert(Request req, typename Request::OutputType val) { | 263 | 49 | auto *cache = getCache<Request>(); | 264 | 49 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 49 | std::move(val)}); | 266 | 49 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 49 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_18BreakTargetRequestEEEvT_NS4_10OutputTypeE Unexecuted instantiation: _ZN5swift9evaluator12RequestCache6insertINS_21ContinueTargetRequestEEEvT_NS4_10OutputTypeE _ZN5swift9evaluator12RequestCache6insertINS_18RequirementRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 9 | void insert(Request req, typename Request::OutputType val) { | 263 | 9 | auto *cache = getCache<Request>(); | 264 | 9 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 9 | std::move(val)}); | 266 | 9 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 9 | } |
_ZN5swift9evaluator12RequestCache6insertINS_40ExpandChildTypeRefinementContextsRequestEEEvT_NS4_10OutputTypeE Line | Count | Source | 262 | 37 | void insert(Request req, typename Request::OutputType val) { | 263 | 37 | auto *cache = getCache<Request>(); | 264 | 37 | auto result = cache->insert({RequestKey<Request>(std::move(req)), | 265 | 37 | std::move(val)}); | 266 | 37 | assert(result.second && "Request result was already cached"); | 267 | 0 | (void) result; | 268 | 37 | } |
|
269 | | |
270 | | template <typename Request> |
271 | 27 | void erase(Request req) { |
272 | 27 | auto *cache = getCache<Request>(); |
273 | 27 | cache->erase(RequestKey<Request>(std::move(req))); |
274 | 27 | } Unexecuted instantiation: _ZN5swift9evaluator12RequestCache5eraseINS_26LocalDiscriminatorsRequestEEEvT_ _ZN5swift9evaluator12RequestCache5eraseINS_19BodyInitKindRequestEEEvT_ Line | Count | Source | 271 | 27 | void erase(Request req) { | 272 | 27 | auto *cache = getCache<Request>(); | 273 | 27 | cache->erase(RequestKey<Request>(std::move(req))); | 274 | 27 | } |
Unexecuted instantiation: _ZN5swift9evaluator12RequestCache5eraseINS_25ParseTopLevelDeclsRequestEEEvT_ |
275 | | |
276 | 0 | void clear() { |
277 | 0 | #define SWIFT_TYPEID_ZONE(Name, Id) Name##ZoneCache.clear(); |
278 | 0 | #include "swift/Basic/TypeIDZones.def" |
279 | 0 | #undef SWIFT_TYPEID_ZONE |
280 | 0 | } |
281 | | }; |
282 | | |
283 | | /// Type-erased wrapper for caching dependencies from a single type of request. |
284 | | class PerRequestReferences { |
285 | | void *Storage; |
286 | | std::function<void(void *)> Deleter; |
287 | | |
288 | | PerRequestReferences(void *storage, std::function<void(void *)> deleter) |
289 | 376 | : Storage(storage), Deleter(deleter) {} |
290 | | |
291 | | public: |
292 | 1.97k | PerRequestReferences() : Storage(nullptr), Deleter([](void *) {}) {} |
293 | | PerRequestReferences(PerRequestReferences &&other) |
294 | 376 | : Storage(other.Storage), Deleter(std::move(other.Deleter)) { |
295 | 376 | other.Storage = nullptr; |
296 | 376 | } |
297 | | |
298 | 376 | PerRequestReferences &operator=(PerRequestReferences &&other) { |
299 | 376 | if (&other != this) { |
300 | 376 | this->~PerRequestReferences(); |
301 | 376 | new (this) PerRequestReferences(std::move(other)); |
302 | 376 | } |
303 | 376 | return *this; |
304 | 376 | } |
305 | | |
306 | | PerRequestReferences(const PerRequestReferences &) = delete; |
307 | | PerRequestReferences &operator=(const PerRequestReferences &) = delete; |
308 | | |
309 | | template <typename Request> |
310 | 376 | static PerRequestReferences makeEmpty() { |
311 | 376 | using Map = |
312 | 376 | llvm::DenseMap<RequestKey<Request>, |
313 | 376 | std::vector<DependencyCollector::Reference>>; |
314 | 376 | return PerRequestReferences(new Map(), |
315 | 376 | [](void *ptr) { delete static_cast<Map *>(ptr); });Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20USRGenerationRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24IDEInspectionFileRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24ConstantValueInfoRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22SymbolSourceMapRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_12IRGenRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18ASTLoweringRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28TangentStoredPropertyRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26ResolveProtocolNameRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ProvideDefaultImplForRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29CollectOverriddenDeclsRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23IsDeclApplicableRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24TypeRelationCheckRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28PreCheckResultBuilderRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32CompareDeclSpecializationRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29EnumElementExprPatternRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25IsDeclRefinementOfRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_35HasUserDefinedDesignatedInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_44AreAllStoredPropertiesDefaultInitableRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31ClosureHasExplicitResultRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_35DistributedModuleIsAvailableRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31CheckDistributedFunctionRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30ValidatePrecedenceGroupRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29SynthesizeMainFunctionRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_34TypeCheckObjCImplementationRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25CheckRedeclarationRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22ApplyAccessNoteRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18DefaultTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30ExternalMacroDefinitionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25CompilerPluginLoadRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18PatternTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20InheritedTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24CustomAttrNominalRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21CustomAttrTypeRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25PreCheckReturnStmtRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32PropertyWrapperLValuenessRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20ExpandAccessorMacrosEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26TypeCheckSourceFileRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_49CheckInconsistentImplementationOnlyImportsRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_38CheckInconsistentSPIOnlyImportsRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36CheckInconsistentAccessLevelOnImportEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_41CheckInconsistentWeakLinkedImportsRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31InferredGenericSignatureRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26CustomRefCountingOperationEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37ObjCInterfaceAndImplementationRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30IDEInspectionSecondPassRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26LocalDiscriminatorsRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24ResolveMacroConformancesEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30TypeEraserHasViableInitRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ResolveTypeEraserTypeRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31ResolveRawLayoutLikeTypeRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31SpecializeAttrTargetDeclRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36SerializeAttrGenericSignatureRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_39DifferentiableAttributeTypeCheckRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_33DerivativeAttrOriginalDeclRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29ImplementsAttrProtocolRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_38InitAccessorReferencedVariablesRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_33SemanticAvailableRangeAttrRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30SemanticUnavailableAttrRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27ExpandMemberAttributeMacrosEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22ExpandPeerMacroRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31ExpandMacroExpansionDeclRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19ResolveMacroRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27GlobalActorAttributeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17ThrownTypeRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28IsAccessorTransparentRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23GenericParamListRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23GenericSignatureRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ScopedImportLookupRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22ExtendedNominalRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31DefaultAndMaxAccessLevelRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19ExtendedTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26PatternBindingEntryRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30RequiresOpaqueAccessorsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36RequiresOpaqueModifyCoroutineRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25SynthesizeAccessorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30IsABICompatibleOverrideRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23IsGetterMutatingRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23IsSetterMutatingRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26OpaqueReadOwnershipRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22OverriddenDeclsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23OpaqueResultTypeRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_13IsObjCRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_14IsFinalRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17IsMoveOnlyRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_16IsDynamicRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30DynamicallyReplacedDeclRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36IsImplicitlyUnwrappedOptionalRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20InterfaceTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18AccessLevelRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23StoredPropertiesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29InitAccessorPropertiesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31MemberwiseInitPropertiesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40StoredPropertiesAndMissingMembersRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30PropertyWrapperTypeInfoRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_14IsActorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25IsDistributedActorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21UnderlyingTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21StructuralTypeRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28DefaultDefinitionTypeRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18EnumRawTypeRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24HasMemberwiseInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31SynthesizeMemberwiseInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37ResolveEffectiveMemberwiseInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21HasDefaultInitRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28SynthesizeDefaultInitRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26GlobalActorInstanceRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20GetDestructorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21IsDefaultActorRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_39HasMissingDesignatedInitializersRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37InheritsSuperclassInitializersRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ClassAncestryFlagsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26HasCircularRawValueRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25InheritedProtocolsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27ProtocolRequirementsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21SuperclassTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ProtocolRequiresClassRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32ExistentialConformsToSelfRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_42HasSelfOrAssociatedTypeRequirementsRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29PrimaryAssociatedTypesRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29StructuralRequirementsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28TypeAliasRequirementsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27ProtocolDependenciesRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27RequirementSignatureRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36HasCircularInheritedProtocolsRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17HasStorageRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22StorageImplInfoRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24SetterAccessLevelRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22HasInitAccessorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27DefaultInitializerIsolationEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20NamingPatternRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ParamSpecifierRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31AttachedPropertyWrappersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_34AttachedPropertyWrapperTypeRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_41PropertyWrapperBackingPropertyTypeRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40PropertyWrapperAuxiliaryVariablesRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37PropertyWrapperInitializerInfoRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32PropertyWrapperMutabilityRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26LazyStoragePropertyRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_33DefaultArgumentInitContextRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26DefaultArgumentExprRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26DefaultArgumentTypeRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24ResultBuilderTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28AttachedResultBuilderRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17ResultTypeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18RenamedDeclRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32ParseAbstractFunctionBodyRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28TypeCheckFunctionBodyRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28IsFunctionBodySkippedRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26NeedsNewVTableEntryRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23FunctionOperatorRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_15IsStaticRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19SimpleDidSetRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21SelfAccessKindRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20EnumRawValuesRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_15InitKindRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19BodyInitKindRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30OperatorPrecedenceGroupRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ActorIsolationRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31ExpandMacroExpansionExprRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22MacroDefinitionRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26FragileFunctionKindRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19ParseMembersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17ABIMembersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17AllMembersRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_48GetDistributedActorArgumentDecodingMethodRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_43GetDistributedActorInvocationDecoderRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26GetDistributedThunkRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40GetDistributedActorSystemPropertyRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36GetDistributedActorIDPropertyRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27SemanticBriefCommentRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36PolymorphicEffectRequirementsRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28PolymorphicEffectKindRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27ConformanceHasEffectRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31CallerSideDefaultArgExprRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ClosureEffectsRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31AbstractGenericSignatureRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22IsNonUserModuleRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ModuleImplicitImportsRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25PrimarySourceFilesRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26MangleLocalTypeDeclRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ExpandExtensionMacrosEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26GetImplicitSendableRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_41GetDistributedActorImplicitCodableRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22ParseSourceFileRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29HasImportsMatchingFlagRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_16SPIGroupsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ModuleLibraryLevelRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ParseTopLevelDeclsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ExportedSourceFileRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22GetSourceFileAsyncNodeEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_35ExpandSynthesizedMemberMacroRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40PotentialMacroExpansionsInContextRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21SuperclassDeclRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30IsCallAsFunctionNominalRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_38HasDynamicMemberLookupAttributeRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_34HasDynamicCallableAttributeRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26LookupInfixOperatorRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27LookupPrefixOperatorRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28LookupPostfixOperatorRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28LookupPrecedenceGroupRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23ExprPatternMatchRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30ConditionalRequirementsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18TypeWitnessRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28AssociatedConformanceRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19ValueWitnessRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37LookupAllConformancesInContextRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17RawCommentRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24IsSingleValueStmtRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18BreakTargetRequestEEES1_vENKUlPvE_clES4_ Unexecuted instantiation: _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ContinueTargetRequestEEES1_vENKUlPvE_clES4_ _ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18RequirementRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
_ZZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40ExpandChildTypeRefinementContextsRequestEEES1_vENKUlPvE_clES4_ Line | Count | Source | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); |
|
316 | 376 | } Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18OptimizedIRRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20USRGenerationRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24IDEInspectionFileRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24ConstantValueInfoRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26CustomRefCountingOperationEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22SymbolSourceMapRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_12IRGenRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17LoweredSILRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20PublicSymbolsRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18GenerateTBDRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_13APIGenRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18ASTLoweringRequestEEES1_v Line | Count | Source | 310 | 5 | static PerRequestReferences makeEmpty() { | 311 | 5 | using Map = | 312 | 5 | llvm::DenseMap<RequestKey<Request>, | 313 | 5 | std::vector<DependencyCollector::Reference>>; | 314 | 5 | return PerRequestReferences(new Map(), | 315 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 5 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ParseSILModuleRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28TangentStoredPropertyRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ExecuteSILPipelineRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26ResolveProtocolNameRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ProvideDefaultImplForRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29CollectOverriddenDeclsRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23IsDeclApplicableRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24TypeRelationCheckRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37RootTypeOfKeypathDynamicMemberRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28PreCheckResultBuilderRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32CompareDeclSpecializationRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29EnumElementExprPatternRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25IsDeclRefinementOfRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_35HasUserDefinedDesignatedInitRequestEEES1_v Line | Count | Source | 310 | 4 | static PerRequestReferences makeEmpty() { | 311 | 4 | using Map = | 312 | 4 | llvm::DenseMap<RequestKey<Request>, | 313 | 4 | std::vector<DependencyCollector::Reference>>; | 314 | 4 | return PerRequestReferences(new Map(), | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_44AreAllStoredPropertiesDefaultInitableRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31ClosureHasExplicitResultRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_35DistributedModuleIsAvailableRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31CheckDistributedFunctionRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30ValidatePrecedenceGroupRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29SynthesizeMainFunctionRequestEEES1_v Line | Count | Source | 310 | 2 | static PerRequestReferences makeEmpty() { | 311 | 2 | using Map = | 312 | 2 | llvm::DenseMap<RequestKey<Request>, | 313 | 2 | std::vector<DependencyCollector::Reference>>; | 314 | 2 | return PerRequestReferences(new Map(), | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 2 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_34TypeCheckObjCImplementationRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25CheckRedeclarationRequestEEES1_v Line | Count | Source | 310 | 6 | static PerRequestReferences makeEmpty() { | 311 | 6 | using Map = | 312 | 6 | llvm::DenseMap<RequestKey<Request>, | 313 | 6 | std::vector<DependencyCollector::Reference>>; | 314 | 6 | return PerRequestReferences(new Map(), | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 6 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22ApplyAccessNoteRequestEEES1_v Line | Count | Source | 310 | 6 | static PerRequestReferences makeEmpty() { | 311 | 6 | using Map = | 312 | 6 | llvm::DenseMap<RequestKey<Request>, | 313 | 6 | std::vector<DependencyCollector::Reference>>; | 314 | 6 | return PerRequestReferences(new Map(), | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 6 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27DirectOperatorLookupRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_34DirectPrecedenceGroupLookupRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18DefaultTypeRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30ExternalMacroDefinitionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25CompilerPluginLoadRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18PatternTypeRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20InheritedTypeRequestEEES1_v Line | Count | Source | 310 | 4 | static PerRequestReferences makeEmpty() { | 311 | 4 | using Map = | 312 | 4 | llvm::DenseMap<RequestKey<Request>, | 313 | 4 | std::vector<DependencyCollector::Reference>>; | 314 | 4 | return PerRequestReferences(new Map(), | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24CustomAttrNominalRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21CustomAttrTypeRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25PreCheckReturnStmtRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27PreCheckFunctionBodyRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32PropertyWrapperLValuenessRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20ExpandAccessorMacrosEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18ResolveTypeRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26TypeCheckSourceFileRequestEEES1_v Line | Count | Source | 310 | 7 | static PerRequestReferences makeEmpty() { | 311 | 7 | using Map = | 312 | 7 | llvm::DenseMap<RequestKey<Request>, | 313 | 7 | std::vector<DependencyCollector::Reference>>; | 314 | 7 | return PerRequestReferences(new Map(), | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 7 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_49CheckInconsistentImplementationOnlyImportsRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_38CheckInconsistentSPIOnlyImportsRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36CheckInconsistentAccessLevelOnImportEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_41CheckInconsistentWeakLinkedImportsRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31InferredGenericSignatureRequestEEES1_v Line | Count | Source | 310 | 5 | static PerRequestReferences makeEmpty() { | 311 | 5 | using Map = | 312 | 5 | llvm::DenseMap<RequestKey<Request>, | 313 | 5 | std::vector<DependencyCollector::Reference>>; | 314 | 5 | return PerRequestReferences(new Map(), | 315 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 5 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28TypeCheckASTNodeAtLocRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37ObjCInterfaceAndImplementationRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23ClangRecordMemberLookupEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26ClangCategoryLookupRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18CxxRecordSemanticsEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18IsSafeUseOfCxxDeclEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20CxxRecordAsSwiftTypeEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30IDEInspectionSecondPassRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26LocalDiscriminatorsRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31TypeDeclsFromWhereClauseRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22HasIsolatedSelfRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24ClangDirectLookupRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24ResolveMacroConformancesEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30TypeEraserHasViableInitRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ResolveTypeEraserTypeRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31ResolveRawLayoutLikeTypeRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31SpecializeAttrTargetDeclRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36SerializeAttrGenericSignatureRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_39DifferentiableAttributeTypeCheckRequestEEES1_v Line | Count | Source | 310 | 5 | static PerRequestReferences makeEmpty() { | 311 | 5 | using Map = | 312 | 5 | llvm::DenseMap<RequestKey<Request>, | 313 | 5 | std::vector<DependencyCollector::Reference>>; | 314 | 5 | return PerRequestReferences(new Map(), | 315 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 5 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_33DerivativeAttrOriginalDeclRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29ImplementsAttrProtocolRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_38InitAccessorReferencedVariablesRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_33SemanticAvailableRangeAttrRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30SemanticUnavailableAttrRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27ExpandMemberAttributeMacrosEEES1_v Line | Count | Source | 310 | 7 | static PerRequestReferences makeEmpty() { | 311 | 7 | using Map = | 312 | 7 | llvm::DenseMap<RequestKey<Request>, | 313 | 7 | std::vector<DependencyCollector::Reference>>; | 314 | 7 | return PerRequestReferences(new Map(), | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 7 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22ExpandPeerMacroRequestEEES1_v Line | Count | Source | 310 | 6 | static PerRequestReferences makeEmpty() { | 311 | 6 | using Map = | 312 | 6 | llvm::DenseMap<RequestKey<Request>, | 313 | 6 | std::vector<DependencyCollector::Reference>>; | 314 | 6 | return PerRequestReferences(new Map(), | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 6 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31ExpandMacroExpansionDeclRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19ResolveMacroRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27GlobalActorAttributeRequestEEES1_v Line | Count | Source | 310 | 6 | static PerRequestReferences makeEmpty() { | 311 | 6 | using Map = | 312 | 6 | llvm::DenseMap<RequestKey<Request>, | 313 | 6 | std::vector<DependencyCollector::Reference>>; | 314 | 6 | return PerRequestReferences(new Map(), | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 6 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17ThrownTypeRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28IsAccessorTransparentRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23GenericParamListRequestEEES1_v Line | Count | Source | 310 | 7 | static PerRequestReferences makeEmpty() { | 311 | 7 | using Map = | 312 | 7 | llvm::DenseMap<RequestKey<Request>, | 313 | 7 | std::vector<DependencyCollector::Reference>>; | 314 | 7 | return PerRequestReferences(new Map(), | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 7 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23GenericSignatureRequestEEES1_v Line | Count | Source | 310 | 7 | static PerRequestReferences makeEmpty() { | 311 | 7 | using Map = | 312 | 7 | llvm::DenseMap<RequestKey<Request>, | 313 | 7 | std::vector<DependencyCollector::Reference>>; | 314 | 7 | return PerRequestReferences(new Map(), | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 7 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ScopedImportLookupRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22ExtendedNominalRequestEEES1_v Line | Count | Source | 310 | 2 | static PerRequestReferences makeEmpty() { | 311 | 2 | using Map = | 312 | 2 | llvm::DenseMap<RequestKey<Request>, | 313 | 2 | std::vector<DependencyCollector::Reference>>; | 314 | 2 | return PerRequestReferences(new Map(), | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 2 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31DefaultAndMaxAccessLevelRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19ExtendedTypeRequestEEES1_v Line | Count | Source | 310 | 2 | static PerRequestReferences makeEmpty() { | 311 | 2 | using Map = | 312 | 2 | llvm::DenseMap<RequestKey<Request>, | 313 | 2 | std::vector<DependencyCollector::Reference>>; | 314 | 2 | return PerRequestReferences(new Map(), | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 2 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26PatternBindingEntryRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30RequiresOpaqueAccessorsRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36RequiresOpaqueModifyCoroutineRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25SynthesizeAccessorRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30IsABICompatibleOverrideRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23IsGetterMutatingRequestEEES1_v Line | Count | Source | 310 | 2 | static PerRequestReferences makeEmpty() { | 311 | 2 | using Map = | 312 | 2 | llvm::DenseMap<RequestKey<Request>, | 313 | 2 | std::vector<DependencyCollector::Reference>>; | 314 | 2 | return PerRequestReferences(new Map(), | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 2 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23IsSetterMutatingRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26OpaqueReadOwnershipRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22OverriddenDeclsRequestEEES1_v Line | Count | Source | 310 | 7 | static PerRequestReferences makeEmpty() { | 311 | 7 | using Map = | 312 | 7 | llvm::DenseMap<RequestKey<Request>, | 313 | 7 | std::vector<DependencyCollector::Reference>>; | 314 | 7 | return PerRequestReferences(new Map(), | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 7 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23OpaqueResultTypeRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_13IsObjCRequestEEES1_v Line | Count | Source | 310 | 7 | static PerRequestReferences makeEmpty() { | 311 | 7 | using Map = | 312 | 7 | llvm::DenseMap<RequestKey<Request>, | 313 | 7 | std::vector<DependencyCollector::Reference>>; | 314 | 7 | return PerRequestReferences(new Map(), | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 7 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_14IsFinalRequestEEES1_v Line | Count | Source | 310 | 4 | static PerRequestReferences makeEmpty() { | 311 | 4 | using Map = | 312 | 4 | llvm::DenseMap<RequestKey<Request>, | 313 | 4 | std::vector<DependencyCollector::Reference>>; | 314 | 4 | return PerRequestReferences(new Map(), | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 4 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17IsMoveOnlyRequestEEES1_v Line | Count | Source | 310 | 7 | static PerRequestReferences makeEmpty() { | 311 | 7 | using Map = | 312 | 7 | llvm::DenseMap<RequestKey<Request>, | 313 | 7 | std::vector<DependencyCollector::Reference>>; | 314 | 7 | return PerRequestReferences(new Map(), | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 7 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_16IsDynamicRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30DynamicallyReplacedDeclRequestEEES1_v Line | Count | Source | 310 | 5 | static PerRequestReferences makeEmpty() { | 311 | 5 | using Map = | 312 | 5 | llvm::DenseMap<RequestKey<Request>, | 313 | 5 | std::vector<DependencyCollector::Reference>>; | 314 | 5 | return PerRequestReferences(new Map(), | 315 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 5 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36IsImplicitlyUnwrappedOptionalRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20InterfaceTypeRequestEEES1_v Line | Count | Source | 310 | 7 | static PerRequestReferences makeEmpty() { | 311 | 7 | using Map = | 312 | 7 | llvm::DenseMap<RequestKey<Request>, | 313 | 7 | std::vector<DependencyCollector::Reference>>; | 314 | 7 | return PerRequestReferences(new Map(), | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 7 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18AccessLevelRequestEEES1_v Line | Count | Source | 310 | 7 | static PerRequestReferences makeEmpty() { | 311 | 7 | using Map = | 312 | 7 | llvm::DenseMap<RequestKey<Request>, | 313 | 7 | std::vector<DependencyCollector::Reference>>; | 314 | 7 | return PerRequestReferences(new Map(), | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 7 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23StoredPropertiesRequestEEES1_v Line | Count | Source | 310 | 4 | static PerRequestReferences makeEmpty() { | 311 | 4 | using Map = | 312 | 4 | llvm::DenseMap<RequestKey<Request>, | 313 | 4 | std::vector<DependencyCollector::Reference>>; | 314 | 4 | return PerRequestReferences(new Map(), | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 4 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29InitAccessorPropertiesRequestEEES1_v Line | Count | Source | 310 | 2 | static PerRequestReferences makeEmpty() { | 311 | 2 | using Map = | 312 | 2 | llvm::DenseMap<RequestKey<Request>, | 313 | 2 | std::vector<DependencyCollector::Reference>>; | 314 | 2 | return PerRequestReferences(new Map(), | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 2 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31MemberwiseInitPropertiesRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40StoredPropertiesAndMissingMembersRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30PropertyWrapperTypeInfoRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_14IsActorRequestEEES1_v Line | Count | Source | 310 | 4 | static PerRequestReferences makeEmpty() { | 311 | 4 | using Map = | 312 | 4 | llvm::DenseMap<RequestKey<Request>, | 313 | 4 | std::vector<DependencyCollector::Reference>>; | 314 | 4 | return PerRequestReferences(new Map(), | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 4 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25IsDistributedActorRequestEEES1_v Line | Count | Source | 310 | 4 | static PerRequestReferences makeEmpty() { | 311 | 4 | using Map = | 312 | 4 | llvm::DenseMap<RequestKey<Request>, | 313 | 4 | std::vector<DependencyCollector::Reference>>; | 314 | 4 | return PerRequestReferences(new Map(), | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 4 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21UnderlyingTypeRequestEEES1_v Line | Count | Source | 310 | 7 | static PerRequestReferences makeEmpty() { | 311 | 7 | using Map = | 312 | 7 | llvm::DenseMap<RequestKey<Request>, | 313 | 7 | std::vector<DependencyCollector::Reference>>; | 314 | 7 | return PerRequestReferences(new Map(), | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 7 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21StructuralTypeRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28DefaultDefinitionTypeRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18EnumRawTypeRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24HasMemberwiseInitRequestEEES1_v Line | Count | Source | 310 | 2 | static PerRequestReferences makeEmpty() { | 311 | 2 | using Map = | 312 | 2 | llvm::DenseMap<RequestKey<Request>, | 313 | 2 | std::vector<DependencyCollector::Reference>>; | 314 | 2 | return PerRequestReferences(new Map(), | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 2 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31SynthesizeMemberwiseInitRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37ResolveEffectiveMemberwiseInitRequestEEES1_v Line | Count | Source | 310 | 2 | static PerRequestReferences makeEmpty() { | 311 | 2 | using Map = | 312 | 2 | llvm::DenseMap<RequestKey<Request>, | 313 | 2 | std::vector<DependencyCollector::Reference>>; | 314 | 2 | return PerRequestReferences(new Map(), | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 2 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21HasDefaultInitRequestEEES1_v Line | Count | Source | 310 | 4 | static PerRequestReferences makeEmpty() { | 311 | 4 | using Map = | 312 | 4 | llvm::DenseMap<RequestKey<Request>, | 313 | 4 | std::vector<DependencyCollector::Reference>>; | 314 | 4 | return PerRequestReferences(new Map(), | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28SynthesizeDefaultInitRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26GlobalActorInstanceRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20GetDestructorRequestEEES1_v Line | Count | Source | 310 | 2 | static PerRequestReferences makeEmpty() { | 311 | 2 | using Map = | 312 | 2 | llvm::DenseMap<RequestKey<Request>, | 313 | 2 | std::vector<DependencyCollector::Reference>>; | 314 | 2 | return PerRequestReferences(new Map(), | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 2 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21IsDefaultActorRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_39HasMissingDesignatedInitializersRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37InheritsSuperclassInitializersRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ClassAncestryFlagsRequestEEES1_v Line | Count | Source | 310 | 2 | static PerRequestReferences makeEmpty() { | 311 | 2 | using Map = | 312 | 2 | llvm::DenseMap<RequestKey<Request>, | 313 | 2 | std::vector<DependencyCollector::Reference>>; | 314 | 2 | return PerRequestReferences(new Map(), | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 2 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26HasCircularRawValueRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25InheritedProtocolsRequestEEES1_v Line | Count | Source | 310 | 6 | static PerRequestReferences makeEmpty() { | 311 | 6 | using Map = | 312 | 6 | llvm::DenseMap<RequestKey<Request>, | 313 | 6 | std::vector<DependencyCollector::Reference>>; | 314 | 6 | return PerRequestReferences(new Map(), | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 6 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27ProtocolRequirementsRequestEEES1_v Line | Count | Source | 310 | 2 | static PerRequestReferences makeEmpty() { | 311 | 2 | using Map = | 312 | 2 | llvm::DenseMap<RequestKey<Request>, | 313 | 2 | std::vector<DependencyCollector::Reference>>; | 314 | 2 | return PerRequestReferences(new Map(), | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 2 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21SuperclassTypeRequestEEES1_v Line | Count | Source | 310 | 2 | static PerRequestReferences makeEmpty() { | 311 | 2 | using Map = | 312 | 2 | llvm::DenseMap<RequestKey<Request>, | 313 | 2 | std::vector<DependencyCollector::Reference>>; | 314 | 2 | return PerRequestReferences(new Map(), | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 2 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ProtocolRequiresClassRequestEEES1_v Line | Count | Source | 310 | 2 | static PerRequestReferences makeEmpty() { | 311 | 2 | using Map = | 312 | 2 | llvm::DenseMap<RequestKey<Request>, | 313 | 2 | std::vector<DependencyCollector::Reference>>; | 314 | 2 | return PerRequestReferences(new Map(), | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 2 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32ExistentialConformsToSelfRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_42HasSelfOrAssociatedTypeRequirementsRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29PrimaryAssociatedTypesRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29StructuralRequirementsRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28TypeAliasRequirementsRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27ProtocolDependenciesRequestEEES1_v Line | Count | Source | 310 | 6 | static PerRequestReferences makeEmpty() { | 311 | 6 | using Map = | 312 | 6 | llvm::DenseMap<RequestKey<Request>, | 313 | 6 | std::vector<DependencyCollector::Reference>>; | 314 | 6 | return PerRequestReferences(new Map(), | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 6 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27RequirementSignatureRequestEEES1_v Line | Count | Source | 310 | 7 | static PerRequestReferences makeEmpty() { | 311 | 7 | using Map = | 312 | 7 | llvm::DenseMap<RequestKey<Request>, | 313 | 7 | std::vector<DependencyCollector::Reference>>; | 314 | 7 | return PerRequestReferences(new Map(), | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 7 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36HasCircularInheritedProtocolsRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17HasStorageRequestEEES1_v Line | Count | Source | 310 | 7 | static PerRequestReferences makeEmpty() { | 311 | 7 | using Map = | 312 | 7 | llvm::DenseMap<RequestKey<Request>, | 313 | 7 | std::vector<DependencyCollector::Reference>>; | 314 | 7 | return PerRequestReferences(new Map(), | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 7 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22StorageImplInfoRequestEEES1_v Line | Count | Source | 310 | 7 | static PerRequestReferences makeEmpty() { | 311 | 7 | using Map = | 312 | 7 | llvm::DenseMap<RequestKey<Request>, | 313 | 7 | std::vector<DependencyCollector::Reference>>; | 314 | 7 | return PerRequestReferences(new Map(), | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 7 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24SetterAccessLevelRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22HasInitAccessorRequestEEES1_v Line | Count | Source | 310 | 2 | static PerRequestReferences makeEmpty() { | 311 | 2 | using Map = | 312 | 2 | llvm::DenseMap<RequestKey<Request>, | 313 | 2 | std::vector<DependencyCollector::Reference>>; | 314 | 2 | return PerRequestReferences(new Map(), | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 2 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27DefaultInitializerIsolationEEES1_v Line | Count | Source | 310 | 5 | static PerRequestReferences makeEmpty() { | 311 | 5 | using Map = | 312 | 5 | llvm::DenseMap<RequestKey<Request>, | 313 | 5 | std::vector<DependencyCollector::Reference>>; | 314 | 5 | return PerRequestReferences(new Map(), | 315 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 5 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20NamingPatternRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ParamSpecifierRequestEEES1_v Line | Count | Source | 310 | 4 | static PerRequestReferences makeEmpty() { | 311 | 4 | using Map = | 312 | 4 | llvm::DenseMap<RequestKey<Request>, | 313 | 4 | std::vector<DependencyCollector::Reference>>; | 314 | 4 | return PerRequestReferences(new Map(), | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 4 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31AttachedPropertyWrappersRequestEEES1_v Line | Count | Source | 310 | 6 | static PerRequestReferences makeEmpty() { | 311 | 6 | using Map = | 312 | 6 | llvm::DenseMap<RequestKey<Request>, | 313 | 6 | std::vector<DependencyCollector::Reference>>; | 314 | 6 | return PerRequestReferences(new Map(), | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 6 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_34AttachedPropertyWrapperTypeRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_41PropertyWrapperBackingPropertyTypeRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40PropertyWrapperAuxiliaryVariablesRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37PropertyWrapperInitializerInfoRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32PropertyWrapperMutabilityRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26LazyStoragePropertyRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_33DefaultArgumentInitContextRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26DefaultArgumentExprRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26DefaultArgumentTypeRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24ResultBuilderTypeRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28AttachedResultBuilderRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17ResultTypeRequestEEES1_v Line | Count | Source | 310 | 6 | static PerRequestReferences makeEmpty() { | 311 | 6 | using Map = | 312 | 6 | llvm::DenseMap<RequestKey<Request>, | 313 | 6 | std::vector<DependencyCollector::Reference>>; | 314 | 6 | return PerRequestReferences(new Map(), | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 6 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18RenamedDeclRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32ParseAbstractFunctionBodyRequestEEES1_v Line | Count | Source | 310 | 5 | static PerRequestReferences makeEmpty() { | 311 | 5 | using Map = | 312 | 5 | llvm::DenseMap<RequestKey<Request>, | 313 | 5 | std::vector<DependencyCollector::Reference>>; | 314 | 5 | return PerRequestReferences(new Map(), | 315 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 5 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28TypeCheckFunctionBodyRequestEEES1_v Line | Count | Source | 310 | 6 | static PerRequestReferences makeEmpty() { | 311 | 6 | using Map = | 312 | 6 | llvm::DenseMap<RequestKey<Request>, | 313 | 6 | std::vector<DependencyCollector::Reference>>; | 314 | 6 | return PerRequestReferences(new Map(), | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 6 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28IsFunctionBodySkippedRequestEEES1_v Line | Count | Source | 310 | 6 | static PerRequestReferences makeEmpty() { | 311 | 6 | using Map = | 312 | 6 | llvm::DenseMap<RequestKey<Request>, | 313 | 6 | std::vector<DependencyCollector::Reference>>; | 314 | 6 | return PerRequestReferences(new Map(), | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 6 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26NeedsNewVTableEntryRequestEEES1_v Line | Count | Source | 310 | 2 | static PerRequestReferences makeEmpty() { | 311 | 2 | using Map = | 312 | 2 | llvm::DenseMap<RequestKey<Request>, | 313 | 2 | std::vector<DependencyCollector::Reference>>; | 314 | 2 | return PerRequestReferences(new Map(), | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 2 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23FunctionOperatorRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_15IsStaticRequestEEES1_v Line | Count | Source | 310 | 6 | static PerRequestReferences makeEmpty() { | 311 | 6 | using Map = | 312 | 6 | llvm::DenseMap<RequestKey<Request>, | 313 | 6 | std::vector<DependencyCollector::Reference>>; | 314 | 6 | return PerRequestReferences(new Map(), | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 6 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19SimpleDidSetRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21SelfAccessKindRequestEEES1_v Line | Count | Source | 310 | 4 | static PerRequestReferences makeEmpty() { | 311 | 4 | using Map = | 312 | 4 | llvm::DenseMap<RequestKey<Request>, | 313 | 4 | std::vector<DependencyCollector::Reference>>; | 314 | 4 | return PerRequestReferences(new Map(), | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_20EnumRawValuesRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_15InitKindRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19BodyInitKindRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30OperatorPrecedenceGroupRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ActorIsolationRequestEEES1_v Line | Count | Source | 310 | 6 | static PerRequestReferences makeEmpty() { | 311 | 6 | using Map = | 312 | 6 | llvm::DenseMap<RequestKey<Request>, | 313 | 6 | std::vector<DependencyCollector::Reference>>; | 314 | 6 | return PerRequestReferences(new Map(), | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 6 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31ExpandMacroExpansionExprRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22MacroDefinitionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ResolveImplicitMemberRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26FragileFunctionKindRequestEEES1_v Line | Count | Source | 310 | 6 | static PerRequestReferences makeEmpty() { | 311 | 6 | using Map = | 312 | 6 | llvm::DenseMap<RequestKey<Request>, | 313 | 6 | std::vector<DependencyCollector::Reference>>; | 314 | 6 | return PerRequestReferences(new Map(), | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 6 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19ParseMembersRequestEEES1_v Line | Count | Source | 310 | 4 | static PerRequestReferences makeEmpty() { | 311 | 4 | using Map = | 312 | 4 | llvm::DenseMap<RequestKey<Request>, | 313 | 4 | std::vector<DependencyCollector::Reference>>; | 314 | 4 | return PerRequestReferences(new Map(), | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 4 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17ABIMembersRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17AllMembersRequestEEES1_v Line | Count | Source | 310 | 2 | static PerRequestReferences makeEmpty() { | 311 | 2 | using Map = | 312 | 2 | llvm::DenseMap<RequestKey<Request>, | 313 | 2 | std::vector<DependencyCollector::Reference>>; | 314 | 2 | return PerRequestReferences(new Map(), | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 2 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_48GetDistributedActorArgumentDecodingMethodRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_43GetDistributedActorInvocationDecoderRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26GetDistributedThunkRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40GetDistributedActorSystemPropertyRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36GetDistributedActorIDPropertyRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27SemanticBriefCommentRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36PolymorphicEffectRequirementsRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28PolymorphicEffectKindRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27ConformanceHasEffectRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31CallerSideDefaultArgExprRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ClosureEffectsRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31AbstractGenericSignatureRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22IsNonUserModuleRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ModuleImplicitImportsRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25PrimarySourceFilesRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26MangleLocalTypeDeclRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ExpandExtensionMacrosEEES1_v Line | Count | Source | 310 | 5 | static PerRequestReferences makeEmpty() { | 311 | 5 | using Map = | 312 | 5 | llvm::DenseMap<RequestKey<Request>, | 313 | 5 | std::vector<DependencyCollector::Reference>>; | 314 | 5 | return PerRequestReferences(new Map(), | 315 | 5 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 5 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26GetImplicitSendableRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_41GetDistributedActorImplicitCodableRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22ParseSourceFileRequestEEES1_v Line | Count | Source | 310 | 7 | static PerRequestReferences makeEmpty() { | 311 | 7 | using Map = | 312 | 7 | llvm::DenseMap<RequestKey<Request>, | 313 | 7 | std::vector<DependencyCollector::Reference>>; | 314 | 7 | return PerRequestReferences(new Map(), | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 7 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_29HasImportsMatchingFlagRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_16SPIGroupsRequestEEES1_v Line | Count | Source | 310 | 6 | static PerRequestReferences makeEmpty() { | 311 | 6 | using Map = | 312 | 6 | llvm::DenseMap<RequestKey<Request>, | 313 | 6 | std::vector<DependencyCollector::Reference>>; | 314 | 6 | return PerRequestReferences(new Map(), | 315 | 6 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 6 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ModuleLibraryLevelRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ParseTopLevelDeclsRequestEEES1_v Line | Count | Source | 310 | 7 | static PerRequestReferences makeEmpty() { | 311 | 7 | using Map = | 312 | 7 | llvm::DenseMap<RequestKey<Request>, | 313 | 7 | std::vector<DependencyCollector::Reference>>; | 314 | 7 | return PerRequestReferences(new Map(), | 315 | 7 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 7 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_25ExportedSourceFileRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22GetSourceFileAsyncNodeEEES1_v Line | Count | Source | 310 | 2 | static PerRequestReferences makeEmpty() { | 311 | 2 | using Map = | 312 | 2 | llvm::DenseMap<RequestKey<Request>, | 313 | 2 | std::vector<DependencyCollector::Reference>>; | 314 | 2 | return PerRequestReferences(new Map(), | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 2 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32LookupConformanceInModuleRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21LookupInModuleRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_35ExpandSynthesizedMemberMacroRequestEEES1_v Line | Count | Source | 310 | 4 | static PerRequestReferences makeEmpty() { | 311 | 4 | using Map = | 312 | 4 | llvm::DenseMap<RequestKey<Request>, | 313 | 4 | std::vector<DependencyCollector::Reference>>; | 314 | 4 | return PerRequestReferences(new Map(), | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 4 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40PotentialMacroExpansionsInContextRequestEEES1_v Line | Count | Source | 310 | 2 | static PerRequestReferences makeEmpty() { | 311 | 2 | using Map = | 312 | 2 | llvm::DenseMap<RequestKey<Request>, | 313 | 2 | std::vector<DependencyCollector::Reference>>; | 314 | 2 | return PerRequestReferences(new Map(), | 315 | 2 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 2 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21SuperclassDeclRequestEEES1_v Line | Count | Source | 310 | 4 | static PerRequestReferences makeEmpty() { | 311 | 4 | using Map = | 312 | 4 | llvm::DenseMap<RequestKey<Request>, | 313 | 4 | std::vector<DependencyCollector::Reference>>; | 314 | 4 | return PerRequestReferences(new Map(), | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30IsCallAsFunctionNominalRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_38HasDynamicMemberLookupAttributeRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_34HasDynamicCallableAttributeRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_32SelfBoundsFromWhereClauseRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37SelfBoundsFromGenericSignatureRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24UnqualifiedLookupRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19DirectLookupRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24CXXNamespaceMemberLookupEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22AnyObjectLookupRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_22QualifiedLookupRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28ModuleQualifiedLookupRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_36UnderlyingTypeDeclsReferencedRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_31InheritedDeclsReferencedRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_26LookupInfixOperatorRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_27LookupPrefixOperatorRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28LookupPostfixOperatorRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28LookupPrecedenceGroupRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_23ExprPatternMatchRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_30ConditionalRequirementsRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18TypeWitnessRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_28AssociatedConformanceRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_19ValueWitnessRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_37LookupAllConformancesInContextRequestEEES1_v Line | Count | Source | 310 | 4 | static PerRequestReferences makeEmpty() { | 311 | 4 | using Map = | 312 | 4 | llvm::DenseMap<RequestKey<Request>, | 313 | 4 | std::vector<DependencyCollector::Reference>>; | 314 | 4 | return PerRequestReferences(new Map(), | 315 | 4 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_17RawCommentRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_24IsSingleValueStmtRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18BreakTargetRequestEEES1_v Unexecuted instantiation: _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_21ContinueTargetRequestEEES1_v _ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_18RequirementRequestEEES1_v Line | Count | Source | 310 | 3 | static PerRequestReferences makeEmpty() { | 311 | 3 | using Map = | 312 | 3 | llvm::DenseMap<RequestKey<Request>, | 313 | 3 | std::vector<DependencyCollector::Reference>>; | 314 | 3 | return PerRequestReferences(new Map(), | 315 | 3 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 3 | } |
_ZN5swift9evaluator20PerRequestReferences9makeEmptyINS_40ExpandChildTypeRefinementContextsRequestEEES1_v Line | Count | Source | 310 | 1 | static PerRequestReferences makeEmpty() { | 311 | 1 | using Map = | 312 | 1 | llvm::DenseMap<RequestKey<Request>, | 313 | 1 | std::vector<DependencyCollector::Reference>>; | 314 | 1 | return PerRequestReferences(new Map(), | 315 | 1 | [](void *ptr) { delete static_cast<Map *>(ptr); }); | 316 | 1 | } |
|
317 | | |
318 | | template <typename Request> |
319 | | llvm::DenseMap<RequestKey<Request>, |
320 | | std::vector<DependencyCollector::Reference>> * |
321 | 199k | get() const { |
322 | 199k | using Map = |
323 | 199k | llvm::DenseMap<RequestKey<Request>, |
324 | 199k | std::vector<DependencyCollector::Reference>>; |
325 | 199k | assert(Storage); |
326 | 0 | return static_cast<Map *>(Storage); |
327 | 199k | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18OptimizedIRRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22SymbolSourceMapRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20USRGenerationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18RenamedDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Frontend.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24IDEInspectionFileRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ConstExtract.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24ConstantValueInfoRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: GenClass.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: GenDistributed.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: GenDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: GenEnum.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: GenHeap.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: GenMeta.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IRGen.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22SymbolSourceMapRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv IRGen.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_12IRGenRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 3 | get() const { | 322 | 3 | using Map = | 323 | 3 | llvm::DenseMap<RequestKey<Request>, | 324 | 3 | std::vector<DependencyCollector::Reference>>; | 325 | 3 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 3 | } |
Unexecuted instantiation: IRGen.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_17LoweredSILRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TBDGen.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20PublicSymbolsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TBDGen.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18GenerateTBDRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TBDGen.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_13APIGenRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv SILGen.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18ASTLoweringRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 15 | get() const { | 322 | 15 | using Map = | 323 | 15 | llvm::DenseMap<RequestKey<Request>, | 324 | 15 | std::vector<DependencyCollector::Reference>>; | 325 | 15 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 15 | } |
Unexecuted instantiation: SILGen.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21ParseSILModuleRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Common.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28TangentStoredPropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: PassManager.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25ExecuteSILPipelineRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: SILOptimizerRequests.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18ASTLoweringRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IDERequests.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28ProvideDefaultImplForRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26ResolveProtocolNameRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28ProvideDefaultImplForRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_29CollectOverriddenDeclsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23IsDeclApplicableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24TypeRelationCheckRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_37RootTypeOfKeypathDynamicMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27DirectOperatorLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_34DirectPrecedenceGroupLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Serialization.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26MangleLocalTypeDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ParseSIL.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24UnqualifiedLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: BuilderTransform.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28PreCheckResultBuilderRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: CSApply.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31ExpandMacroExpansionExprRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv CSRanking.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_32CompareDeclSpecializationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 8 | get() const { | 322 | 8 | using Map = | 323 | 8 | llvm::DenseMap<RequestKey<Request>, | 324 | 8 | std::vector<DependencyCollector::Reference>>; | 325 | 8 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 8 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_29EnumElementExprPatternRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: CSSimplify.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_34HasDynamicCallableAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: CSSimplify.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24UnqualifiedLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv CSStep.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25IsDeclRefinementOfRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 48 | get() const { | 322 | 48 | using Map = | 323 | 48 | llvm::DenseMap<RequestKey<Request>, | 324 | 48 | std::vector<DependencyCollector::Reference>>; | 325 | 48 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 48 | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18CxxRecordSemanticsEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv CodeSynthesis.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_35HasUserDefinedDesignatedInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 47 | get() const { | 322 | 47 | using Map = | 323 | 47 | llvm::DenseMap<RequestKey<Request>, | 324 | 47 | std::vector<DependencyCollector::Reference>>; | 325 | 47 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 47 | } |
Unexecuted instantiation: CodeSynthesis.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_44AreAllStoredPropertiesDefaultInitableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ConstraintSystem.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21ClosureEffectsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ConstraintSystem.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31ClosureHasExplicitResultRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23IsDeclApplicableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_37RootTypeOfKeypathDynamicMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: MiscDiagnostics.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24UnqualifiedLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: PreCheckExpr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25PreCheckReturnStmtRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_29SynthesizeMainFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21CustomAttrTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24ResolveMacroConformancesEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31InferredGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27GlobalActorAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24UnqualifiedLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27GlobalActorAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21CustomAttrTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22HasIsolatedSelfRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_35DistributedModuleIsAvailableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31CheckDistributedFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeCheckDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30ValidatePrecedenceGroupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 3 | get() const { | 322 | 3 | using Map = | 323 | 3 | llvm::DenseMap<RequestKey<Request>, | 324 | 3 | std::vector<DependencyCollector::Reference>>; | 325 | 3 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 3 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_35ExpandSynthesizedMemberMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeCheckDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_29SynthesizeMainFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 8 | get() const { | 322 | 8 | using Map = | 323 | 8 | llvm::DenseMap<RequestKey<Request>, | 324 | 8 | std::vector<DependencyCollector::Reference>>; | 325 | 8 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 8 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_36HasCircularInheritedProtocolsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26HasCircularRawValueRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22OverriddenDeclsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30IsABICompatibleOverrideRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28ResolveImplicitMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_34TypeCheckObjCImplementationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20InheritedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30ExternalMacroDefinitionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25CheckRedeclarationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 345 | get() const { | 322 | 345 | using Map = | 323 | 345 | llvm::DenseMap<RequestKey<Request>, | 324 | 345 | std::vector<DependencyCollector::Reference>>; | 325 | 345 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 345 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21ExpandExtensionMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22ApplyAccessNoteRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 574 | get() const { | 322 | 574 | using Map = | 323 | 574 | llvm::DenseMap<RequestKey<Request>, | 324 | 574 | std::vector<DependencyCollector::Reference>>; | 325 | 574 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 574 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_19ResolveMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28ResolveImplicitMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27DirectOperatorLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_34DirectPrecedenceGroupLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeCheckExpr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18DefaultTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 80 | get() const { | 322 | 80 | using Map = | 323 | 80 | llvm::DenseMap<RequestKey<Request>, | 324 | 80 | std::vector<DependencyCollector::Reference>>; | 325 | 80 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 80 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31InferredGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30ExternalMacroDefinitionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25CompilerPluginLoadRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31ExpandMacroExpansionDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24UnqualifiedLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeCheckPattern.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18PatternTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 69 | get() const { | 322 | 69 | using Map = | 323 | 69 | llvm::DenseMap<RequestKey<Request>, | 324 | 69 | std::vector<DependencyCollector::Reference>>; | 325 | 69 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 69 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31AttachedPropertyWrappersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21CustomAttrTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_40PotentialMacroExpansionsInContextRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeCheckRequestFunctions.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20InheritedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 30 | get() const { | 322 | 30 | using Map = | 323 | 30 | llvm::DenseMap<RequestKey<Request>, | 324 | 30 | std::vector<DependencyCollector::Reference>>; | 325 | 30 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 30 | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21CustomAttrTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckStmt.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25PreCheckReturnStmtRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckStmt.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26LocalDiscriminatorsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckStmt.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27PreCheckFunctionBodyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_35ExpandSynthesizedMemberMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22ExpandPeerMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_32PropertyWrapperLValuenessRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20ExpandAccessorMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeCheckType.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18ResolveTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeChecker.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26TypeCheckSourceFileRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 26 | get() const { | 322 | 26 | using Map = | 323 | 26 | llvm::DenseMap<RequestKey<Request>, | 324 | 26 | std::vector<DependencyCollector::Reference>>; | 325 | 26 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 26 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_49CheckInconsistentImplementationOnlyImportsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeChecker.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_38CheckInconsistentSPIOnlyImportsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeChecker.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_36CheckInconsistentAccessLevelOnImportEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: TypeChecker.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_41CheckInconsistentWeakLinkedImportsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeChecker.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31InferredGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 43 | get() const { | 322 | 43 | using Map = | 323 | 43 | llvm::DenseMap<RequestKey<Request>, | 324 | 43 | std::vector<DependencyCollector::Reference>>; | 325 | 43 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 43 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28TypeCheckASTNodeAtLocRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ClangDerivedConformances.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23ClangRecordMemberLookupEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_37ObjCInterfaceAndImplementationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24ClangDirectLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23ClangRecordMemberLookupEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26ClangCategoryLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18CxxRecordSemanticsEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ImportName.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18IsSafeUseOfCxxDeclEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ImportType.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20CxxRecordAsSwiftTypeEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Parser.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30IDEInspectionSecondPassRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Parser.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26LocalDiscriminatorsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ParseRequests.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22ParseSourceFileRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: AccessRequests.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31TypeDeclsFromWhereClauseRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22HasIsolatedSelfRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ASTPrinter.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24ClangDirectLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24ResolveMacroConformancesEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30TypeEraserHasViableInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28ResolveTypeEraserTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31ResolveRawLayoutLikeTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31SpecializeAttrTargetDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_36SerializeAttrGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_39DifferentiableAttributeTypeCheckRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 62 | get() const { | 322 | 62 | using Map = | 323 | 62 | llvm::DenseMap<RequestKey<Request>, | 324 | 62 | std::vector<DependencyCollector::Reference>>; | 325 | 62 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 62 | } |
Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_33DerivativeAttrOriginalDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 2 | get() const { | 322 | 2 | using Map = | 323 | 2 | llvm::DenseMap<RequestKey<Request>, | 324 | 2 | std::vector<DependencyCollector::Reference>>; | 325 | 2 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 2 | } |
Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_29ImplementsAttrProtocolRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Attr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_38InitAccessorReferencedVariablesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Availability.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_33SemanticAvailableRangeAttrRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Availability.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30SemanticUnavailableAttrRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 20 | get() const { | 322 | 20 | using Map = | 323 | 20 | llvm::DenseMap<RequestKey<Request>, | 324 | 20 | std::vector<DependencyCollector::Reference>>; | 325 | 20 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 20 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27ExpandMemberAttributeMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.97k | get() const { | 322 | 1.97k | using Map = | 323 | 1.97k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.97k | std::vector<DependencyCollector::Reference>>; | 325 | 1.97k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.97k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22ExpandPeerMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 520 | get() const { | 322 | 520 | using Map = | 323 | 520 | llvm::DenseMap<RequestKey<Request>, | 324 | 520 | std::vector<DependencyCollector::Reference>>; | 325 | 520 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 520 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31ExpandMacroExpansionDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_19ResolveMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27GlobalActorAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.16k | get() const { | 322 | 1.16k | using Map = | 323 | 1.16k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.16k | std::vector<DependencyCollector::Reference>>; | 325 | 1.16k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.16k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_17ThrownTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28IsAccessorTransparentRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23GenericParamListRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 13.5k | get() const { | 322 | 13.5k | using Map = | 323 | 13.5k | llvm::DenseMap<RequestKey<Request>, | 324 | 13.5k | std::vector<DependencyCollector::Reference>>; | 325 | 13.5k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 13.5k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23GenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 19.9k | get() const { | 322 | 19.9k | using Map = | 323 | 19.9k | llvm::DenseMap<RequestKey<Request>, | 324 | 19.9k | std::vector<DependencyCollector::Reference>>; | 325 | 19.9k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 19.9k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25ScopedImportLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20InheritedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22ExtendedNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 16 | get() const { | 322 | 16 | using Map = | 323 | 16 | llvm::DenseMap<RequestKey<Request>, | 324 | 16 | std::vector<DependencyCollector::Reference>>; | 325 | 16 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 16 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31DefaultAndMaxAccessLevelRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_19ExtendedTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 32 | get() const { | 322 | 32 | using Map = | 323 | 32 | llvm::DenseMap<RequestKey<Request>, | 324 | 32 | std::vector<DependencyCollector::Reference>>; | 325 | 32 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 32 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26PatternBindingEntryRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 30 | get() const { | 322 | 30 | using Map = | 323 | 30 | llvm::DenseMap<RequestKey<Request>, | 324 | 30 | std::vector<DependencyCollector::Reference>>; | 325 | 30 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 30 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30RequiresOpaqueAccessorsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 36 | get() const { | 322 | 36 | using Map = | 323 | 36 | llvm::DenseMap<RequestKey<Request>, | 324 | 36 | std::vector<DependencyCollector::Reference>>; | 325 | 36 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 36 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_36RequiresOpaqueModifyCoroutineRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 34 | get() const { | 322 | 34 | using Map = | 323 | 34 | llvm::DenseMap<RequestKey<Request>, | 324 | 34 | std::vector<DependencyCollector::Reference>>; | 325 | 34 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 34 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25SynthesizeAccessorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 14 | get() const { | 322 | 14 | using Map = | 323 | 14 | llvm::DenseMap<RequestKey<Request>, | 324 | 14 | std::vector<DependencyCollector::Reference>>; | 325 | 14 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 14 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30IsABICompatibleOverrideRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23IsGetterMutatingRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 258 | get() const { | 322 | 258 | using Map = | 323 | 258 | llvm::DenseMap<RequestKey<Request>, | 324 | 258 | std::vector<DependencyCollector::Reference>>; | 325 | 258 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 258 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23IsSetterMutatingRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 182 | get() const { | 322 | 182 | using Map = | 323 | 182 | llvm::DenseMap<RequestKey<Request>, | 324 | 182 | std::vector<DependencyCollector::Reference>>; | 325 | 182 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 182 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26OpaqueReadOwnershipRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 84 | get() const { | 322 | 84 | using Map = | 323 | 84 | llvm::DenseMap<RequestKey<Request>, | 324 | 84 | std::vector<DependencyCollector::Reference>>; | 325 | 84 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 84 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26LocalDiscriminatorsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22OverriddenDeclsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 8.41k | get() const { | 322 | 8.41k | using Map = | 323 | 8.41k | llvm::DenseMap<RequestKey<Request>, | 324 | 8.41k | std::vector<DependencyCollector::Reference>>; | 325 | 8.41k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 8.41k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23OpaqueResultTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_13IsObjCRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 12.7k | get() const { | 322 | 12.7k | using Map = | 323 | 12.7k | llvm::DenseMap<RequestKey<Request>, | 324 | 12.7k | std::vector<DependencyCollector::Reference>>; | 325 | 12.7k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 12.7k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_14IsFinalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 146 | get() const { | 322 | 146 | using Map = | 323 | 146 | llvm::DenseMap<RequestKey<Request>, | 324 | 146 | std::vector<DependencyCollector::Reference>>; | 325 | 146 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 146 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_17IsMoveOnlyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.50k | get() const { | 322 | 1.50k | using Map = | 323 | 1.50k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.50k | std::vector<DependencyCollector::Reference>>; | 325 | 1.50k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.50k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_16IsDynamicRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 88 | get() const { | 322 | 88 | using Map = | 323 | 88 | llvm::DenseMap<RequestKey<Request>, | 324 | 88 | std::vector<DependencyCollector::Reference>>; | 325 | 88 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 88 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30DynamicallyReplacedDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 50 | get() const { | 322 | 50 | using Map = | 323 | 50 | llvm::DenseMap<RequestKey<Request>, | 324 | 50 | std::vector<DependencyCollector::Reference>>; | 325 | 50 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 50 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_36IsImplicitlyUnwrappedOptionalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 8.80k | get() const { | 322 | 8.80k | using Map = | 323 | 8.80k | llvm::DenseMap<RequestKey<Request>, | 324 | 8.80k | std::vector<DependencyCollector::Reference>>; | 325 | 8.80k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 8.80k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20InterfaceTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 62.6k | get() const { | 322 | 62.6k | using Map = | 323 | 62.6k | llvm::DenseMap<RequestKey<Request>, | 324 | 62.6k | std::vector<DependencyCollector::Reference>>; | 325 | 62.6k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 62.6k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18AccessLevelRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 16.5k | get() const { | 322 | 16.5k | using Map = | 323 | 16.5k | llvm::DenseMap<RequestKey<Request>, | 324 | 16.5k | std::vector<DependencyCollector::Reference>>; | 325 | 16.5k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 16.5k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23StoredPropertiesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 608 | get() const { | 322 | 608 | using Map = | 323 | 608 | llvm::DenseMap<RequestKey<Request>, | 324 | 608 | std::vector<DependencyCollector::Reference>>; | 325 | 608 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 608 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_29InitAccessorPropertiesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 24 | get() const { | 322 | 24 | using Map = | 323 | 24 | llvm::DenseMap<RequestKey<Request>, | 324 | 24 | std::vector<DependencyCollector::Reference>>; | 325 | 24 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 24 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31MemberwiseInitPropertiesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 14 | get() const { | 322 | 14 | using Map = | 323 | 14 | llvm::DenseMap<RequestKey<Request>, | 324 | 14 | std::vector<DependencyCollector::Reference>>; | 325 | 14 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 14 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_40StoredPropertiesAndMissingMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30PropertyWrapperTypeInfoRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_14IsActorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.25k | get() const { | 322 | 1.25k | using Map = | 323 | 1.25k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.25k | std::vector<DependencyCollector::Reference>>; | 325 | 1.25k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.25k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25IsDistributedActorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.44k | get() const { | 322 | 1.44k | using Map = | 323 | 1.44k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.44k | std::vector<DependencyCollector::Reference>>; | 325 | 1.44k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.44k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21UnderlyingTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 252 | get() const { | 322 | 252 | using Map = | 323 | 252 | llvm::DenseMap<RequestKey<Request>, | 324 | 252 | std::vector<DependencyCollector::Reference>>; | 325 | 252 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 252 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21StructuralTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28DefaultDefinitionTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18EnumRawTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24HasMemberwiseInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 39 | get() const { | 322 | 39 | using Map = | 323 | 39 | llvm::DenseMap<RequestKey<Request>, | 324 | 39 | std::vector<DependencyCollector::Reference>>; | 325 | 39 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 39 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31SynthesizeMemberwiseInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 21 | get() const { | 322 | 21 | using Map = | 323 | 21 | llvm::DenseMap<RequestKey<Request>, | 324 | 21 | std::vector<DependencyCollector::Reference>>; | 325 | 21 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 21 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_37ResolveEffectiveMemberwiseInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 58 | get() const { | 322 | 58 | using Map = | 323 | 58 | llvm::DenseMap<RequestKey<Request>, | 324 | 58 | std::vector<DependencyCollector::Reference>>; | 325 | 58 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 58 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21HasDefaultInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 17 | get() const { | 322 | 17 | using Map = | 323 | 17 | llvm::DenseMap<RequestKey<Request>, | 324 | 17 | std::vector<DependencyCollector::Reference>>; | 325 | 17 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 17 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28SynthesizeDefaultInitRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26GlobalActorInstanceRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20GetDestructorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 10 | get() const { | 322 | 10 | using Map = | 323 | 10 | llvm::DenseMap<RequestKey<Request>, | 324 | 10 | std::vector<DependencyCollector::Reference>>; | 325 | 10 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 10 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21IsDefaultActorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_39HasMissingDesignatedInitializersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_37InheritsSuperclassInitializersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25ClassAncestryFlagsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 12 | get() const { | 322 | 12 | using Map = | 323 | 12 | llvm::DenseMap<RequestKey<Request>, | 324 | 12 | std::vector<DependencyCollector::Reference>>; | 325 | 12 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 12 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26CustomRefCountingOperationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26HasCircularRawValueRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25InheritedProtocolsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.94k | get() const { | 322 | 1.94k | using Map = | 323 | 1.94k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.94k | std::vector<DependencyCollector::Reference>>; | 325 | 1.94k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.94k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27ProtocolRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 128 | get() const { | 322 | 128 | using Map = | 323 | 128 | llvm::DenseMap<RequestKey<Request>, | 324 | 128 | std::vector<DependencyCollector::Reference>>; | 325 | 128 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 128 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21SuperclassTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 6 | get() const { | 322 | 6 | using Map = | 323 | 6 | llvm::DenseMap<RequestKey<Request>, | 324 | 6 | std::vector<DependencyCollector::Reference>>; | 325 | 6 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21SuperclassDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28ProtocolRequiresClassRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 62 | get() const { | 322 | 62 | using Map = | 323 | 62 | llvm::DenseMap<RequestKey<Request>, | 324 | 62 | std::vector<DependencyCollector::Reference>>; | 325 | 62 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 62 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_32ExistentialConformsToSelfRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 12 | get() const { | 322 | 12 | using Map = | 323 | 12 | llvm::DenseMap<RequestKey<Request>, | 324 | 12 | std::vector<DependencyCollector::Reference>>; | 325 | 12 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 12 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_42HasSelfOrAssociatedTypeRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_29PrimaryAssociatedTypesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_29StructuralRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 10 | get() const { | 322 | 10 | using Map = | 323 | 10 | llvm::DenseMap<RequestKey<Request>, | 324 | 10 | std::vector<DependencyCollector::Reference>>; | 325 | 10 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 10 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28TypeAliasRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 2 | get() const { | 322 | 2 | using Map = | 323 | 2 | llvm::DenseMap<RequestKey<Request>, | 324 | 2 | std::vector<DependencyCollector::Reference>>; | 325 | 2 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 2 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27ProtocolDependenciesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.45k | get() const { | 322 | 1.45k | using Map = | 323 | 1.45k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.45k | std::vector<DependencyCollector::Reference>>; | 325 | 1.45k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.45k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27RequirementSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 2.23k | get() const { | 322 | 2.23k | using Map = | 323 | 2.23k | llvm::DenseMap<RequestKey<Request>, | 324 | 2.23k | std::vector<DependencyCollector::Reference>>; | 325 | 2.23k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 2.23k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_36HasCircularInheritedProtocolsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_17HasStorageRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 706 | get() const { | 322 | 706 | using Map = | 323 | 706 | llvm::DenseMap<RequestKey<Request>, | 324 | 706 | std::vector<DependencyCollector::Reference>>; | 325 | 706 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 706 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22StorageImplInfoRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.26k | get() const { | 322 | 1.26k | using Map = | 323 | 1.26k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.26k | std::vector<DependencyCollector::Reference>>; | 325 | 1.26k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.26k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24SetterAccessLevelRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 48 | get() const { | 322 | 48 | using Map = | 323 | 48 | llvm::DenseMap<RequestKey<Request>, | 324 | 48 | std::vector<DependencyCollector::Reference>>; | 325 | 48 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 48 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22HasInitAccessorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 354 | get() const { | 322 | 354 | using Map = | 323 | 354 | llvm::DenseMap<RequestKey<Request>, | 324 | 354 | std::vector<DependencyCollector::Reference>>; | 325 | 354 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 354 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27DefaultInitializerIsolationEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 33 | get() const { | 322 | 33 | using Map = | 323 | 33 | llvm::DenseMap<RequestKey<Request>, | 324 | 33 | std::vector<DependencyCollector::Reference>>; | 325 | 33 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 33 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20NamingPatternRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 41 | get() const { | 322 | 41 | using Map = | 323 | 41 | llvm::DenseMap<RequestKey<Request>, | 324 | 41 | std::vector<DependencyCollector::Reference>>; | 325 | 41 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 41 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21ParamSpecifierRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 3.39k | get() const { | 322 | 3.39k | using Map = | 323 | 3.39k | llvm::DenseMap<RequestKey<Request>, | 324 | 3.39k | std::vector<DependencyCollector::Reference>>; | 325 | 3.39k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 3.39k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31AttachedPropertyWrappersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 2.97k | get() const { | 322 | 2.97k | using Map = | 323 | 2.97k | llvm::DenseMap<RequestKey<Request>, | 324 | 2.97k | std::vector<DependencyCollector::Reference>>; | 325 | 2.97k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 2.97k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24CustomAttrNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_34AttachedPropertyWrapperTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_41PropertyWrapperBackingPropertyTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_40PropertyWrapperAuxiliaryVariablesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_37PropertyWrapperInitializerInfoRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_32PropertyWrapperMutabilityRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 50 | get() const { | 322 | 50 | using Map = | 323 | 50 | llvm::DenseMap<RequestKey<Request>, | 324 | 50 | std::vector<DependencyCollector::Reference>>; | 325 | 50 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 50 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26LazyStoragePropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_33DefaultArgumentInitContextRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26DefaultArgumentExprRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26DefaultArgumentTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24ResultBuilderTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 22 | get() const { | 322 | 22 | using Map = | 323 | 22 | llvm::DenseMap<RequestKey<Request>, | 324 | 22 | std::vector<DependencyCollector::Reference>>; | 325 | 22 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 22 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28AttachedResultBuilderRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 54 | get() const { | 322 | 54 | using Map = | 323 | 54 | llvm::DenseMap<RequestKey<Request>, | 324 | 54 | std::vector<DependencyCollector::Reference>>; | 325 | 54 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 54 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_17ResultTypeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.82k | get() const { | 322 | 1.82k | using Map = | 323 | 1.82k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.82k | std::vector<DependencyCollector::Reference>>; | 325 | 1.82k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.82k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18RenamedDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_32ParseAbstractFunctionBodyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 3.11k | get() const { | 322 | 3.11k | using Map = | 323 | 3.11k | llvm::DenseMap<RequestKey<Request>, | 324 | 3.11k | std::vector<DependencyCollector::Reference>>; | 325 | 3.11k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 3.11k | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28TypeCheckFunctionBodyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 232 | get() const { | 322 | 232 | using Map = | 323 | 232 | llvm::DenseMap<RequestKey<Request>, | 324 | 232 | std::vector<DependencyCollector::Reference>>; | 325 | 232 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 232 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28IsFunctionBodySkippedRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 360 | get() const { | 322 | 360 | using Map = | 323 | 360 | llvm::DenseMap<RequestKey<Request>, | 324 | 360 | std::vector<DependencyCollector::Reference>>; | 325 | 360 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 360 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26NeedsNewVTableEntryRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 52 | get() const { | 322 | 52 | using Map = | 323 | 52 | llvm::DenseMap<RequestKey<Request>, | 324 | 52 | std::vector<DependencyCollector::Reference>>; | 325 | 52 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 52 | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23FunctionOperatorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_15IsStaticRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 8.75k | get() const { | 322 | 8.75k | using Map = | 323 | 8.75k | llvm::DenseMap<RequestKey<Request>, | 324 | 8.75k | std::vector<DependencyCollector::Reference>>; | 325 | 8.75k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 8.75k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_19SimpleDidSetRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21SelfAccessKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 3.78k | get() const { | 322 | 3.78k | using Map = | 323 | 3.78k | llvm::DenseMap<RequestKey<Request>, | 324 | 3.78k | std::vector<DependencyCollector::Reference>>; | 325 | 3.78k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 3.78k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20EnumRawValuesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_15InitKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 12 | get() const { | 322 | 12 | using Map = | 323 | 12 | llvm::DenseMap<RequestKey<Request>, | 324 | 12 | std::vector<DependencyCollector::Reference>>; | 325 | 12 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 12 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_19BodyInitKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 27 | get() const { | 322 | 27 | using Map = | 323 | 27 | llvm::DenseMap<RequestKey<Request>, | 324 | 27 | std::vector<DependencyCollector::Reference>>; | 325 | 27 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 27 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30OperatorPrecedenceGroupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 12 | get() const { | 322 | 12 | using Map = | 323 | 12 | llvm::DenseMap<RequestKey<Request>, | 324 | 12 | std::vector<DependencyCollector::Reference>>; | 325 | 12 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 12 | } |
Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21ActorIsolationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 1.71k | get() const { | 322 | 1.71k | using Map = | 323 | 1.71k | llvm::DenseMap<RequestKey<Request>, | 324 | 1.71k | std::vector<DependencyCollector::Reference>>; | 325 | 1.71k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 1.71k | } |
Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31ExpandMacroExpansionExprRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24ResolveMacroConformancesEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22MacroDefinitionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Decl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28ResolveImplicitMemberRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv DeclContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26FragileFunctionKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 224 | get() const { | 322 | 224 | using Map = | 323 | 224 | llvm::DenseMap<RequestKey<Request>, | 324 | 224 | std::vector<DependencyCollector::Reference>>; | 325 | 224 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 224 | } |
DeclContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_19ParseMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 640 | get() const { | 322 | 640 | using Map = | 323 | 640 | llvm::DenseMap<RequestKey<Request>, | 324 | 640 | std::vector<DependencyCollector::Reference>>; | 325 | 640 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 640 | } |
DeclContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_17ABIMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 16 | get() const { | 322 | 16 | using Map = | 323 | 16 | llvm::DenseMap<RequestKey<Request>, | 324 | 16 | std::vector<DependencyCollector::Reference>>; | 325 | 16 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 16 | } |
DeclContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_17AllMembersRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 2 | get() const { | 322 | 2 | using Map = | 323 | 2 | llvm::DenseMap<RequestKey<Request>, | 324 | 2 | std::vector<DependencyCollector::Reference>>; | 325 | 2 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 2 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_48GetDistributedActorArgumentDecodingMethodRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_43GetDistributedActorInvocationDecoderRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26GetDistributedThunkRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_40GetDistributedActorSystemPropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_36GetDistributedActorIDPropertyRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: DocComment.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27SemanticBriefCommentRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Effects.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_36PolymorphicEffectRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Effects.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28PolymorphicEffectKindRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 64 | get() const { | 322 | 64 | using Map = | 323 | 64 | llvm::DenseMap<RequestKey<Request>, | 324 | 64 | std::vector<DependencyCollector::Reference>>; | 325 | 64 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 64 | } |
Unexecuted instantiation: Effects.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27ConformanceHasEffectRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Expr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31CallerSideDefaultArgExprRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Expr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26LocalDiscriminatorsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Expr.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21ClosureEffectsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv GenericSignature.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31AbstractGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 37 | get() const { | 322 | 37 | using Map = | 323 | 37 | llvm::DenseMap<RequestKey<Request>, | 324 | 37 | std::vector<DependencyCollector::Reference>>; | 325 | 37 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 37 | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22IsNonUserModuleRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28ModuleImplicitImportsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25PrimarySourceFilesRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26MangleLocalTypeDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21ExpandExtensionMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 5.36k | get() const { | 322 | 5.36k | using Map = | 323 | 5.36k | llvm::DenseMap<RequestKey<Request>, | 324 | 5.36k | std::vector<DependencyCollector::Reference>>; | 325 | 5.36k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 5.36k | } |
Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26GetImplicitSendableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 18 | get() const { | 322 | 18 | using Map = | 323 | 18 | llvm::DenseMap<RequestKey<Request>, | 324 | 18 | std::vector<DependencyCollector::Reference>>; | 325 | 18 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 18 | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_41GetDistributedActorImplicitCodableRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22ParseSourceFileRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 82 | get() const { | 322 | 82 | using Map = | 323 | 82 | llvm::DenseMap<RequestKey<Request>, | 324 | 82 | std::vector<DependencyCollector::Reference>>; | 325 | 82 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 82 | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_29HasImportsMatchingFlagRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_16SPIGroupsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 2.86k | get() const { | 322 | 2.86k | using Map = | 323 | 2.86k | llvm::DenseMap<RequestKey<Request>, | 324 | 2.86k | std::vector<DependencyCollector::Reference>>; | 325 | 2.86k | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 2.86k | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25ModuleLibraryLevelRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25ParseTopLevelDeclsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 64 | get() const { | 322 | 64 | using Map = | 323 | 64 | llvm::DenseMap<RequestKey<Request>, | 324 | 64 | std::vector<DependencyCollector::Reference>>; | 325 | 64 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 64 | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_25ExportedSourceFileRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22GetSourceFileAsyncNodeEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 4 | get() const { | 322 | 4 | using Map = | 323 | 4 | llvm::DenseMap<RequestKey<Request>, | 324 | 4 | std::vector<DependencyCollector::Reference>>; | 325 | 4 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 4 | } |
Unexecuted instantiation: Module.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_32LookupConformanceInModuleRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ModuleNameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21LookupInModuleRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_35ExpandSynthesizedMemberMacroRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 44 | get() const { | 322 | 44 | using Map = | 323 | 44 | llvm::DenseMap<RequestKey<Request>, | 324 | 44 | std::vector<DependencyCollector::Reference>>; | 325 | 44 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 44 | } |
Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21ExpandExtensionMacrosEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_40PotentialMacroExpansionsInContextRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 136 | get() const { | 322 | 136 | using Map = | 323 | 136 | llvm::DenseMap<RequestKey<Request>, | 324 | 136 | std::vector<DependencyCollector::Reference>>; | 325 | 136 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 136 | } |
NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21SuperclassDeclRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 876 | get() const { | 322 | 876 | using Map = | 323 | 876 | llvm::DenseMap<RequestKey<Request>, | 324 | 876 | std::vector<DependencyCollector::Reference>>; | 325 | 876 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 876 | } |
Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30IsCallAsFunctionNominalRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_38HasDynamicMemberLookupAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 20 | get() const { | 322 | 20 | using Map = | 323 | 20 | llvm::DenseMap<RequestKey<Request>, | 324 | 20 | std::vector<DependencyCollector::Reference>>; | 325 | 20 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 20 | } |
Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_34HasDynamicCallableAttributeRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_32SelfBoundsFromWhereClauseRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_37SelfBoundsFromGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24UnqualifiedLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_19DirectLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24CXXNamespaceMemberLookupEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23ClangRecordMemberLookupEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22AnyObjectLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_22QualifiedLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28ModuleQualifiedLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_36UnderlyingTypeDeclsReferencedRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31InheritedDeclsReferencedRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv OperatorNameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_26LookupInfixOperatorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 8 | get() const { | 322 | 8 | using Map = | 323 | 8 | llvm::DenseMap<RequestKey<Request>, | 324 | 8 | std::vector<DependencyCollector::Reference>>; | 325 | 8 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 8 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27LookupPrefixOperatorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28LookupPostfixOperatorRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv OperatorNameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28LookupPrecedenceGroupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 5 | get() const { | 322 | 5 | using Map = | 323 | 5 | llvm::DenseMap<RequestKey<Request>, | 324 | 5 | std::vector<DependencyCollector::Reference>>; | 325 | 5 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 5 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_27DirectOperatorLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_34DirectPrecedenceGroupLookupRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Pattern.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_23ExprPatternMatchRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv ProtocolConformance.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_30ConditionalRequirementsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 547 | get() const { | 322 | 547 | using Map = | 323 | 547 | llvm::DenseMap<RequestKey<Request>, | 324 | 547 | std::vector<DependencyCollector::Reference>>; | 325 | 547 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 547 | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18TypeWitnessRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: ProtocolConformance.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_28AssociatedConformanceRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv ProtocolConformance.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_19ValueWitnessRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 20 | get() const { | 322 | 20 | using Map = | 323 | 20 | llvm::DenseMap<RequestKey<Request>, | 324 | 20 | std::vector<DependencyCollector::Reference>>; | 325 | 20 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 20 | } |
ProtocolConformance.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_37LookupAllConformancesInContextRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 243 | get() const { | 322 | 243 | using Map = | 323 | 243 | llvm::DenseMap<RequestKey<Request>, | 324 | 243 | std::vector<DependencyCollector::Reference>>; | 325 | 243 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 243 | } |
Unexecuted instantiation: RawComment.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_17RawCommentRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: RequirementMachineRequests.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_31AbstractGenericSignatureRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Stmt.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_24IsSingleValueStmtRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Stmt.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18BreakTargetRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Unexecuted instantiation: Stmt.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_21ContinueTargetRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv TypeCheckRequests.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_18RequirementRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 42 | get() const { | 322 | 42 | using Map = | 323 | 42 | llvm::DenseMap<RequestKey<Request>, | 324 | 42 | std::vector<DependencyCollector::Reference>>; | 325 | 42 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 42 | } |
TypeRefinementContext.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_40ExpandChildTypeRefinementContextsRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv Line | Count | Source | 321 | 16 | get() const { | 322 | 16 | using Map = | 323 | 16 | llvm::DenseMap<RequestKey<Request>, | 324 | 16 | std::vector<DependencyCollector::Reference>>; | 325 | 16 | assert(Storage); | 326 | 0 | return static_cast<Map *>(Storage); | 327 | 16 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZNK5swift9evaluator20PerRequestReferences3getINS_20USRGenerationRequestEEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEEEv |
328 | | |
329 | 199k | bool isNull() const { return !Storage; } |
330 | 2.72k | ~PerRequestReferences() { |
331 | 2.72k | if (Storage) |
332 | 376 | Deleter(Storage); |
333 | 2.72k | } |
334 | | }; |
335 | | |
336 | | /// Data structure for caching dependencies from requests. Sharded by the |
337 | | /// type ID zone and request kind, with a PerRequestReferences for each |
338 | | /// request kind. |
339 | | /// |
340 | | /// Conceptually equivalent to DenseMap<AnyRequest, vector<Reference>>, but |
341 | | /// without type erasure overhead for keys. |
342 | | class RequestReferences { |
343 | | |
344 | | #define SWIFT_TYPEID_ZONE(Name, Id) \ |
345 | | std::vector<PerRequestReferences> Name##ZoneRefs; \ |
346 | | \ |
347 | | template < \ |
348 | | typename Request, typename ZoneTypes = TypeIDZoneTypes<Zone::Name>, \ |
349 | | typename std::enable_if<TypeID<Request>::zone == Zone::Name>::type * = \ |
350 | | nullptr> \ |
351 | | llvm::DenseMap<RequestKey<Request>, \ |
352 | | std::vector<DependencyCollector::Reference>> * \ |
353 | 199k | getRefs() { \ |
354 | 199k | auto &refs = Name##ZoneRefs; \ |
355 | 199k | if (refs.empty()) { \ |
356 | 36 | refs.resize(ZoneTypes::Count); \ |
357 | 36 | } \ |
358 | 199k | auto idx = TypeID<Request>::localID; \ |
359 | 199k | if (refs[idx].isNull()) { \ |
360 | 376 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ |
361 | 376 | } \ |
362 | 199k | return refs[idx].template get<Request>(); \ |
363 | 199k | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18OptimizedIRRequestENS_15TypeIDZoneTypesILNS_4ZoneE20EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22SymbolSourceMapRequestENS_15TypeIDZoneTypesILNS_4ZoneE14EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20USRGenerationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18RenamedDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24IDEInspectionFileRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24ConstantValueInfoRequestENS_15TypeIDZoneTypesILNS_4ZoneE140EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22SymbolSourceMapRequestENS_15TypeIDZoneTypesILNS_4ZoneE14EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv IRGen.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_12IRGenRequestENS_15TypeIDZoneTypesILNS_4ZoneE20EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 3 | getRefs() { \ | 354 | 3 | auto &refs = Name##ZoneRefs; \ | 355 | 3 | if (refs.empty()) { \ | 356 | 1 | refs.resize(ZoneTypes::Count); \ | 357 | 1 | } \ | 358 | 3 | auto idx = TypeID<Request>::localID; \ | 359 | 3 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 3 | return refs[idx].template get<Request>(); \ | 363 | 3 | } |
Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_17LoweredSILRequestENS_15TypeIDZoneTypesILNS_4ZoneE13EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20PublicSymbolsRequestENS_15TypeIDZoneTypesILNS_4ZoneE14EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18GenerateTBDRequestENS_15TypeIDZoneTypesILNS_4ZoneE14EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TBDGen.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_13APIGenRequestENS_15TypeIDZoneTypesILNS_4ZoneE14EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv SILGen.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18ASTLoweringRequestENS_15TypeIDZoneTypesILNS_4ZoneE12EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 15 | getRefs() { \ | 354 | 15 | auto &refs = Name##ZoneRefs; \ | 355 | 15 | if (refs.empty()) { \ | 356 | 5 | refs.resize(ZoneTypes::Count); \ | 357 | 5 | } \ | 358 | 15 | auto idx = TypeID<Request>::localID; \ | 359 | 15 | if (refs[idx].isNull()) { \ | 360 | 5 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 5 | } \ | 362 | 15 | return refs[idx].template get<Request>(); \ | 363 | 15 | } |
Unexecuted instantiation: SILGen.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21ParseSILModuleRequestENS_15TypeIDZoneTypesILNS_4ZoneE12EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Common.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28TangentStoredPropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: PassManager.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25ExecuteSILPipelineRequestENS_15TypeIDZoneTypesILNS_4ZoneE13EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18ASTLoweringRequestENS_15TypeIDZoneTypesILNS_4ZoneE12EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28ProvideDefaultImplForRequestENS_15TypeIDZoneTypesILNS_4ZoneE137EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_46RootAndResultTypeOfKeypathDynamicMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26ResolveProtocolNameRequestENS_15TypeIDZoneTypesILNS_4ZoneE137EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28ProvideDefaultImplForRequestENS_15TypeIDZoneTypesILNS_4ZoneE137EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_29CollectOverriddenDeclsRequestENS_15TypeIDZoneTypesILNS_4ZoneE137EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23IsDeclApplicableRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24TypeRelationCheckRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_37RootTypeOfKeypathDynamicMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27DirectOperatorLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Deserialization.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_34DirectPrecedenceGroupLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26MangleLocalTypeDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ParseSIL.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24UnqualifiedLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28PreCheckResultBuilderRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31ExpandMacroExpansionExprRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv CSRanking.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_32CompareDeclSpecializationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 8 | getRefs() { \ | 354 | 8 | auto &refs = Name##ZoneRefs; \ | 355 | 8 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 8 | auto idx = TypeID<Request>::localID; \ | 359 | 8 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 8 | return refs[idx].template get<Request>(); \ | 363 | 8 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_29EnumElementExprPatternRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_34HasDynamicCallableAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24UnqualifiedLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv CSStep.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25IsDeclRefinementOfRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 48 | getRefs() { \ | 354 | 48 | auto &refs = Name##ZoneRefs; \ | 355 | 48 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 48 | auto idx = TypeID<Request>::localID; \ | 359 | 48 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 48 | return refs[idx].template get<Request>(); \ | 363 | 48 | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18CxxRecordSemanticsENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv CodeSynthesis.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_35HasUserDefinedDesignatedInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 47 | getRefs() { \ | 354 | 47 | auto &refs = Name##ZoneRefs; \ | 355 | 47 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 47 | auto idx = TypeID<Request>::localID; \ | 359 | 47 | if (refs[idx].isNull()) { \ | 360 | 4 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 4 | } \ | 362 | 47 | return refs[idx].template get<Request>(); \ | 363 | 47 | } |
Unexecuted instantiation: CodeSynthesis.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_44AreAllStoredPropertiesDefaultInitableRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21ClosureEffectsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31ClosureHasExplicitResultRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23IsDeclApplicableRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_46RootAndResultTypeOfKeypathDynamicMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_37RootTypeOfKeypathDynamicMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: MiscDiagnostics.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24UnqualifiedLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25PreCheckReturnStmtRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_29SynthesizeMainFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21CustomAttrTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24ResolveMacroConformancesENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31InferredGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27GlobalActorAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24UnqualifiedLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27GlobalActorAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21CustomAttrTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22HasIsolatedSelfRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_35DistributedModuleIsAvailableRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31CheckDistributedFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30ValidatePrecedenceGroupRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 3 | getRefs() { \ | 354 | 3 | auto &refs = Name##ZoneRefs; \ | 355 | 3 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 3 | auto idx = TypeID<Request>::localID; \ | 359 | 3 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 3 | return refs[idx].template get<Request>(); \ | 363 | 3 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_35ExpandSynthesizedMemberMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_29SynthesizeMainFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 8 | getRefs() { \ | 354 | 8 | auto &refs = Name##ZoneRefs; \ | 355 | 8 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 8 | auto idx = TypeID<Request>::localID; \ | 359 | 8 | if (refs[idx].isNull()) { \ | 360 | 2 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 2 | } \ | 362 | 8 | return refs[idx].template get<Request>(); \ | 363 | 8 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_36HasCircularInheritedProtocolsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26HasCircularRawValueRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22OverriddenDeclsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30IsABICompatibleOverrideRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28ResolveImplicitMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_34TypeCheckObjCImplementationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20InheritedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30ExternalMacroDefinitionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25CheckRedeclarationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 345 | getRefs() { \ | 354 | 345 | auto &refs = Name##ZoneRefs; \ | 355 | 345 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 345 | auto idx = TypeID<Request>::localID; \ | 359 | 345 | if (refs[idx].isNull()) { \ | 360 | 6 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 6 | } \ | 362 | 345 | return refs[idx].template get<Request>(); \ | 363 | 345 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21ExpandExtensionMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22ApplyAccessNoteRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 574 | getRefs() { \ | 354 | 574 | auto &refs = Name##ZoneRefs; \ | 355 | 574 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 574 | auto idx = TypeID<Request>::localID; \ | 359 | 574 | if (refs[idx].isNull()) { \ | 360 | 6 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 6 | } \ | 362 | 574 | return refs[idx].template get<Request>(); \ | 363 | 574 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_19ResolveMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28ResolveImplicitMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27DirectOperatorLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_34DirectPrecedenceGroupLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeCheckExpr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18DefaultTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 80 | getRefs() { \ | 354 | 80 | auto &refs = Name##ZoneRefs; \ | 355 | 80 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 80 | auto idx = TypeID<Request>::localID; \ | 359 | 80 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 80 | return refs[idx].template get<Request>(); \ | 363 | 80 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31InferredGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30ExternalMacroDefinitionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25CompilerPluginLoadRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31ExpandMacroExpansionDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24UnqualifiedLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeCheckPattern.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18PatternTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 69 | getRefs() { \ | 354 | 69 | auto &refs = Name##ZoneRefs; \ | 355 | 69 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 69 | auto idx = TypeID<Request>::localID; \ | 359 | 69 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 69 | return refs[idx].template get<Request>(); \ | 363 | 69 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31AttachedPropertyWrappersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21CustomAttrTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_40PotentialMacroExpansionsInContextRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20InheritedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 30 | getRefs() { \ | 354 | 30 | auto &refs = Name##ZoneRefs; \ | 355 | 30 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 30 | auto idx = TypeID<Request>::localID; \ | 359 | 30 | if (refs[idx].isNull()) { \ | 360 | 4 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 4 | } \ | 362 | 30 | return refs[idx].template get<Request>(); \ | 363 | 30 | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21CustomAttrTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25PreCheckReturnStmtRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26LocalDiscriminatorsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27PreCheckFunctionBodyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_35ExpandSynthesizedMemberMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22ExpandPeerMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_32PropertyWrapperLValuenessRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20ExpandAccessorMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeCheckType.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18ResolveTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26TypeCheckSourceFileRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 26 | getRefs() { \ | 354 | 26 | auto &refs = Name##ZoneRefs; \ | 355 | 26 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 26 | auto idx = TypeID<Request>::localID; \ | 359 | 26 | if (refs[idx].isNull()) { \ | 360 | 7 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 7 | } \ | 362 | 26 | return refs[idx].template get<Request>(); \ | 363 | 26 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_49CheckInconsistentImplementationOnlyImportsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_38CheckInconsistentSPIOnlyImportsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_36CheckInconsistentAccessLevelOnImportENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_41CheckInconsistentWeakLinkedImportsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31InferredGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 43 | getRefs() { \ | 354 | 43 | auto &refs = Name##ZoneRefs; \ | 355 | 43 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 43 | auto idx = TypeID<Request>::localID; \ | 359 | 43 | if (refs[idx].isNull()) { \ | 360 | 5 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 5 | } \ | 362 | 43 | return refs[idx].template get<Request>(); \ | 363 | 43 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28TypeCheckASTNodeAtLocRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_46RootAndResultTypeOfKeypathDynamicMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE97EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23ClangRecordMemberLookupENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_37ObjCInterfaceAndImplementationRequestENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24ClangDirectLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23ClangRecordMemberLookupENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26ClangCategoryLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18CxxRecordSemanticsENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ImportName.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18IsSafeUseOfCxxDeclENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ImportType.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20CxxRecordAsSwiftTypeENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30IDEInspectionSecondPassRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26LocalDiscriminatorsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22ParseSourceFileRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: AccessRequests.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31TypeDeclsFromWhereClauseRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22HasIsolatedSelfRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ASTPrinter.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24ClangDirectLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24ResolveMacroConformancesENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30TypeEraserHasViableInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28ResolveTypeEraserTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31ResolveRawLayoutLikeTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31SpecializeAttrTargetDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_36SerializeAttrGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_39DifferentiableAttributeTypeCheckRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 62 | getRefs() { \ | 354 | 62 | auto &refs = Name##ZoneRefs; \ | 355 | 62 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 62 | auto idx = TypeID<Request>::localID; \ | 359 | 62 | if (refs[idx].isNull()) { \ | 360 | 5 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 5 | } \ | 362 | 62 | return refs[idx].template get<Request>(); \ | 363 | 62 | } |
Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_33DerivativeAttrOriginalDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 2 | getRefs() { \ | 354 | 2 | auto &refs = Name##ZoneRefs; \ | 355 | 2 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 2 | auto idx = TypeID<Request>::localID; \ | 359 | 2 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 2 | return refs[idx].template get<Request>(); \ | 363 | 2 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_29ImplementsAttrProtocolRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_38InitAccessorReferencedVariablesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_33SemanticAvailableRangeAttrRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Availability.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30SemanticUnavailableAttrRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 20 | getRefs() { \ | 354 | 20 | auto &refs = Name##ZoneRefs; \ | 355 | 20 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 20 | auto idx = TypeID<Request>::localID; \ | 359 | 20 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 20 | return refs[idx].template get<Request>(); \ | 363 | 20 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27ExpandMemberAttributeMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.97k | getRefs() { \ | 354 | 1.97k | auto &refs = Name##ZoneRefs; \ | 355 | 1.97k | if (refs.empty()) { \ | 356 | 6 | refs.resize(ZoneTypes::Count); \ | 357 | 6 | } \ | 358 | 1.97k | auto idx = TypeID<Request>::localID; \ | 359 | 1.97k | if (refs[idx].isNull()) { \ | 360 | 7 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 7 | } \ | 362 | 1.97k | return refs[idx].template get<Request>(); \ | 363 | 1.97k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22ExpandPeerMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 520 | getRefs() { \ | 354 | 520 | auto &refs = Name##ZoneRefs; \ | 355 | 520 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 520 | auto idx = TypeID<Request>::localID; \ | 359 | 520 | if (refs[idx].isNull()) { \ | 360 | 6 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 6 | } \ | 362 | 520 | return refs[idx].template get<Request>(); \ | 363 | 520 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31ExpandMacroExpansionDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_19ResolveMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27GlobalActorAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.16k | getRefs() { \ | 354 | 1.16k | auto &refs = Name##ZoneRefs; \ | 355 | 1.16k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.16k | auto idx = TypeID<Request>::localID; \ | 359 | 1.16k | if (refs[idx].isNull()) { \ | 360 | 6 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 6 | } \ | 362 | 1.16k | return refs[idx].template get<Request>(); \ | 363 | 1.16k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_17ThrownTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28IsAccessorTransparentRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23GenericParamListRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 13.5k | getRefs() { \ | 354 | 13.5k | auto &refs = Name##ZoneRefs; \ | 355 | 13.5k | if (refs.empty()) { \ | 356 | 5 | refs.resize(ZoneTypes::Count); \ | 357 | 5 | } \ | 358 | 13.5k | auto idx = TypeID<Request>::localID; \ | 359 | 13.5k | if (refs[idx].isNull()) { \ | 360 | 7 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 7 | } \ | 362 | 13.5k | return refs[idx].template get<Request>(); \ | 363 | 13.5k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23GenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 19.9k | getRefs() { \ | 354 | 19.9k | auto &refs = Name##ZoneRefs; \ | 355 | 19.9k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 19.9k | auto idx = TypeID<Request>::localID; \ | 359 | 19.9k | if (refs[idx].isNull()) { \ | 360 | 7 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 7 | } \ | 362 | 19.9k | return refs[idx].template get<Request>(); \ | 363 | 19.9k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25ScopedImportLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20InheritedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22ExtendedNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 16 | getRefs() { \ | 354 | 16 | auto &refs = Name##ZoneRefs; \ | 355 | 16 | if (refs.empty()) { \ | 356 | 2 | refs.resize(ZoneTypes::Count); \ | 357 | 2 | } \ | 358 | 16 | auto idx = TypeID<Request>::localID; \ | 359 | 16 | if (refs[idx].isNull()) { \ | 360 | 2 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 2 | } \ | 362 | 16 | return refs[idx].template get<Request>(); \ | 363 | 16 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31DefaultAndMaxAccessLevelRequestENS_15TypeIDZoneTypesILNS_4ZoneE11EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_19ExtendedTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 32 | getRefs() { \ | 354 | 32 | auto &refs = Name##ZoneRefs; \ | 355 | 32 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 32 | auto idx = TypeID<Request>::localID; \ | 359 | 32 | if (refs[idx].isNull()) { \ | 360 | 2 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 2 | } \ | 362 | 32 | return refs[idx].template get<Request>(); \ | 363 | 32 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26PatternBindingEntryRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 30 | getRefs() { \ | 354 | 30 | auto &refs = Name##ZoneRefs; \ | 355 | 30 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 30 | auto idx = TypeID<Request>::localID; \ | 359 | 30 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 30 | return refs[idx].template get<Request>(); \ | 363 | 30 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30RequiresOpaqueAccessorsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 36 | getRefs() { \ | 354 | 36 | auto &refs = Name##ZoneRefs; \ | 355 | 36 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 36 | auto idx = TypeID<Request>::localID; \ | 359 | 36 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 36 | return refs[idx].template get<Request>(); \ | 363 | 36 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_36RequiresOpaqueModifyCoroutineRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 34 | getRefs() { \ | 354 | 34 | auto &refs = Name##ZoneRefs; \ | 355 | 34 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 34 | auto idx = TypeID<Request>::localID; \ | 359 | 34 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 34 | return refs[idx].template get<Request>(); \ | 363 | 34 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25SynthesizeAccessorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 14 | getRefs() { \ | 354 | 14 | auto &refs = Name##ZoneRefs; \ | 355 | 14 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 14 | auto idx = TypeID<Request>::localID; \ | 359 | 14 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 14 | return refs[idx].template get<Request>(); \ | 363 | 14 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30IsABICompatibleOverrideRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23IsGetterMutatingRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 258 | getRefs() { \ | 354 | 258 | auto &refs = Name##ZoneRefs; \ | 355 | 258 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 258 | auto idx = TypeID<Request>::localID; \ | 359 | 258 | if (refs[idx].isNull()) { \ | 360 | 2 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 2 | } \ | 362 | 258 | return refs[idx].template get<Request>(); \ | 363 | 258 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23IsSetterMutatingRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 182 | getRefs() { \ | 354 | 182 | auto &refs = Name##ZoneRefs; \ | 355 | 182 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 182 | auto idx = TypeID<Request>::localID; \ | 359 | 182 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 182 | return refs[idx].template get<Request>(); \ | 363 | 182 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26OpaqueReadOwnershipRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 84 | getRefs() { \ | 354 | 84 | auto &refs = Name##ZoneRefs; \ | 355 | 84 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 84 | auto idx = TypeID<Request>::localID; \ | 359 | 84 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 84 | return refs[idx].template get<Request>(); \ | 363 | 84 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26LocalDiscriminatorsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22OverriddenDeclsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 8.41k | getRefs() { \ | 354 | 8.41k | auto &refs = Name##ZoneRefs; \ | 355 | 8.41k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 8.41k | auto idx = TypeID<Request>::localID; \ | 359 | 8.41k | if (refs[idx].isNull()) { \ | 360 | 7 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 7 | } \ | 362 | 8.41k | return refs[idx].template get<Request>(); \ | 363 | 8.41k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23OpaqueResultTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_13IsObjCRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 12.7k | getRefs() { \ | 354 | 12.7k | auto &refs = Name##ZoneRefs; \ | 355 | 12.7k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 12.7k | auto idx = TypeID<Request>::localID; \ | 359 | 12.7k | if (refs[idx].isNull()) { \ | 360 | 7 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 7 | } \ | 362 | 12.7k | return refs[idx].template get<Request>(); \ | 363 | 12.7k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_14IsFinalRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 146 | getRefs() { \ | 354 | 146 | auto &refs = Name##ZoneRefs; \ | 355 | 146 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 146 | auto idx = TypeID<Request>::localID; \ | 359 | 146 | if (refs[idx].isNull()) { \ | 360 | 4 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 4 | } \ | 362 | 146 | return refs[idx].template get<Request>(); \ | 363 | 146 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_17IsMoveOnlyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.50k | getRefs() { \ | 354 | 1.50k | auto &refs = Name##ZoneRefs; \ | 355 | 1.50k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.50k | auto idx = TypeID<Request>::localID; \ | 359 | 1.50k | if (refs[idx].isNull()) { \ | 360 | 7 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 7 | } \ | 362 | 1.50k | return refs[idx].template get<Request>(); \ | 363 | 1.50k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_16IsDynamicRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 88 | getRefs() { \ | 354 | 88 | auto &refs = Name##ZoneRefs; \ | 355 | 88 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 88 | auto idx = TypeID<Request>::localID; \ | 359 | 88 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 88 | return refs[idx].template get<Request>(); \ | 363 | 88 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30DynamicallyReplacedDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 50 | getRefs() { \ | 354 | 50 | auto &refs = Name##ZoneRefs; \ | 355 | 50 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 50 | auto idx = TypeID<Request>::localID; \ | 359 | 50 | if (refs[idx].isNull()) { \ | 360 | 5 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 5 | } \ | 362 | 50 | return refs[idx].template get<Request>(); \ | 363 | 50 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_36IsImplicitlyUnwrappedOptionalRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 8.80k | getRefs() { \ | 354 | 8.80k | auto &refs = Name##ZoneRefs; \ | 355 | 8.80k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 8.80k | auto idx = TypeID<Request>::localID; \ | 359 | 8.80k | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 8.80k | return refs[idx].template get<Request>(); \ | 363 | 8.80k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20InterfaceTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 62.6k | getRefs() { \ | 354 | 62.6k | auto &refs = Name##ZoneRefs; \ | 355 | 62.6k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 62.6k | auto idx = TypeID<Request>::localID; \ | 359 | 62.6k | if (refs[idx].isNull()) { \ | 360 | 7 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 7 | } \ | 362 | 62.6k | return refs[idx].template get<Request>(); \ | 363 | 62.6k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18AccessLevelRequestENS_15TypeIDZoneTypesILNS_4ZoneE11EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 16.5k | getRefs() { \ | 354 | 16.5k | auto &refs = Name##ZoneRefs; \ | 355 | 16.5k | if (refs.empty()) { \ | 356 | 7 | refs.resize(ZoneTypes::Count); \ | 357 | 7 | } \ | 358 | 16.5k | auto idx = TypeID<Request>::localID; \ | 359 | 16.5k | if (refs[idx].isNull()) { \ | 360 | 7 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 7 | } \ | 362 | 16.5k | return refs[idx].template get<Request>(); \ | 363 | 16.5k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23StoredPropertiesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 608 | getRefs() { \ | 354 | 608 | auto &refs = Name##ZoneRefs; \ | 355 | 608 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 608 | auto idx = TypeID<Request>::localID; \ | 359 | 608 | if (refs[idx].isNull()) { \ | 360 | 4 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 4 | } \ | 362 | 608 | return refs[idx].template get<Request>(); \ | 363 | 608 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_29InitAccessorPropertiesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 24 | getRefs() { \ | 354 | 24 | auto &refs = Name##ZoneRefs; \ | 355 | 24 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 24 | auto idx = TypeID<Request>::localID; \ | 359 | 24 | if (refs[idx].isNull()) { \ | 360 | 2 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 2 | } \ | 362 | 24 | return refs[idx].template get<Request>(); \ | 363 | 24 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31MemberwiseInitPropertiesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 14 | getRefs() { \ | 354 | 14 | auto &refs = Name##ZoneRefs; \ | 355 | 14 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 14 | auto idx = TypeID<Request>::localID; \ | 359 | 14 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 14 | return refs[idx].template get<Request>(); \ | 363 | 14 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_40StoredPropertiesAndMissingMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30PropertyWrapperTypeInfoRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_14IsActorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.25k | getRefs() { \ | 354 | 1.25k | auto &refs = Name##ZoneRefs; \ | 355 | 1.25k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.25k | auto idx = TypeID<Request>::localID; \ | 359 | 1.25k | if (refs[idx].isNull()) { \ | 360 | 4 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 4 | } \ | 362 | 1.25k | return refs[idx].template get<Request>(); \ | 363 | 1.25k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25IsDistributedActorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.44k | getRefs() { \ | 354 | 1.44k | auto &refs = Name##ZoneRefs; \ | 355 | 1.44k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.44k | auto idx = TypeID<Request>::localID; \ | 359 | 1.44k | if (refs[idx].isNull()) { \ | 360 | 4 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 4 | } \ | 362 | 1.44k | return refs[idx].template get<Request>(); \ | 363 | 1.44k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21UnderlyingTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 252 | getRefs() { \ | 354 | 252 | auto &refs = Name##ZoneRefs; \ | 355 | 252 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 252 | auto idx = TypeID<Request>::localID; \ | 359 | 252 | if (refs[idx].isNull()) { \ | 360 | 7 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 7 | } \ | 362 | 252 | return refs[idx].template get<Request>(); \ | 363 | 252 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21StructuralTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28DefaultDefinitionTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18EnumRawTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24HasMemberwiseInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 39 | getRefs() { \ | 354 | 39 | auto &refs = Name##ZoneRefs; \ | 355 | 39 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 39 | auto idx = TypeID<Request>::localID; \ | 359 | 39 | if (refs[idx].isNull()) { \ | 360 | 2 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 2 | } \ | 362 | 39 | return refs[idx].template get<Request>(); \ | 363 | 39 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31SynthesizeMemberwiseInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 21 | getRefs() { \ | 354 | 21 | auto &refs = Name##ZoneRefs; \ | 355 | 21 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 21 | auto idx = TypeID<Request>::localID; \ | 359 | 21 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 21 | return refs[idx].template get<Request>(); \ | 363 | 21 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_37ResolveEffectiveMemberwiseInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 58 | getRefs() { \ | 354 | 58 | auto &refs = Name##ZoneRefs; \ | 355 | 58 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 58 | auto idx = TypeID<Request>::localID; \ | 359 | 58 | if (refs[idx].isNull()) { \ | 360 | 2 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 2 | } \ | 362 | 58 | return refs[idx].template get<Request>(); \ | 363 | 58 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21HasDefaultInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 17 | getRefs() { \ | 354 | 17 | auto &refs = Name##ZoneRefs; \ | 355 | 17 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 17 | auto idx = TypeID<Request>::localID; \ | 359 | 17 | if (refs[idx].isNull()) { \ | 360 | 4 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 4 | } \ | 362 | 17 | return refs[idx].template get<Request>(); \ | 363 | 17 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28SynthesizeDefaultInitRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26GlobalActorInstanceRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20GetDestructorRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 10 | getRefs() { \ | 354 | 10 | auto &refs = Name##ZoneRefs; \ | 355 | 10 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 10 | auto idx = TypeID<Request>::localID; \ | 359 | 10 | if (refs[idx].isNull()) { \ | 360 | 2 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 2 | } \ | 362 | 10 | return refs[idx].template get<Request>(); \ | 363 | 10 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21IsDefaultActorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_39HasMissingDesignatedInitializersRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_37InheritsSuperclassInitializersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25ClassAncestryFlagsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 12 | getRefs() { \ | 354 | 12 | auto &refs = Name##ZoneRefs; \ | 355 | 12 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 12 | auto idx = TypeID<Request>::localID; \ | 359 | 12 | if (refs[idx].isNull()) { \ | 360 | 2 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 2 | } \ | 362 | 12 | return refs[idx].template get<Request>(); \ | 363 | 12 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26CustomRefCountingOperationENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26HasCircularRawValueRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25InheritedProtocolsRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.94k | getRefs() { \ | 354 | 1.94k | auto &refs = Name##ZoneRefs; \ | 355 | 1.94k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.94k | auto idx = TypeID<Request>::localID; \ | 359 | 1.94k | if (refs[idx].isNull()) { \ | 360 | 6 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 6 | } \ | 362 | 1.94k | return refs[idx].template get<Request>(); \ | 363 | 1.94k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27ProtocolRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 128 | getRefs() { \ | 354 | 128 | auto &refs = Name##ZoneRefs; \ | 355 | 128 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 128 | auto idx = TypeID<Request>::localID; \ | 359 | 128 | if (refs[idx].isNull()) { \ | 360 | 2 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 2 | } \ | 362 | 128 | return refs[idx].template get<Request>(); \ | 363 | 128 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21SuperclassTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 6 | getRefs() { \ | 354 | 6 | auto &refs = Name##ZoneRefs; \ | 355 | 6 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 6 | auto idx = TypeID<Request>::localID; \ | 359 | 6 | if (refs[idx].isNull()) { \ | 360 | 2 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 2 | } \ | 362 | 6 | return refs[idx].template get<Request>(); \ | 363 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21SuperclassDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28ProtocolRequiresClassRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 62 | getRefs() { \ | 354 | 62 | auto &refs = Name##ZoneRefs; \ | 355 | 62 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 62 | auto idx = TypeID<Request>::localID; \ | 359 | 62 | if (refs[idx].isNull()) { \ | 360 | 2 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 2 | } \ | 362 | 62 | return refs[idx].template get<Request>(); \ | 363 | 62 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_32ExistentialConformsToSelfRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 12 | getRefs() { \ | 354 | 12 | auto &refs = Name##ZoneRefs; \ | 355 | 12 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 12 | auto idx = TypeID<Request>::localID; \ | 359 | 12 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 12 | return refs[idx].template get<Request>(); \ | 363 | 12 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_42HasSelfOrAssociatedTypeRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_29PrimaryAssociatedTypesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_29StructuralRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 10 | getRefs() { \ | 354 | 10 | auto &refs = Name##ZoneRefs; \ | 355 | 10 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 10 | auto idx = TypeID<Request>::localID; \ | 359 | 10 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 10 | return refs[idx].template get<Request>(); \ | 363 | 10 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28TypeAliasRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 2 | getRefs() { \ | 354 | 2 | auto &refs = Name##ZoneRefs; \ | 355 | 2 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 2 | auto idx = TypeID<Request>::localID; \ | 359 | 2 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 2 | return refs[idx].template get<Request>(); \ | 363 | 2 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27ProtocolDependenciesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.45k | getRefs() { \ | 354 | 1.45k | auto &refs = Name##ZoneRefs; \ | 355 | 1.45k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.45k | auto idx = TypeID<Request>::localID; \ | 359 | 1.45k | if (refs[idx].isNull()) { \ | 360 | 6 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 6 | } \ | 362 | 1.45k | return refs[idx].template get<Request>(); \ | 363 | 1.45k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27RequirementSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 2.23k | getRefs() { \ | 354 | 2.23k | auto &refs = Name##ZoneRefs; \ | 355 | 2.23k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 2.23k | auto idx = TypeID<Request>::localID; \ | 359 | 2.23k | if (refs[idx].isNull()) { \ | 360 | 7 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 7 | } \ | 362 | 2.23k | return refs[idx].template get<Request>(); \ | 363 | 2.23k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_36HasCircularInheritedProtocolsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_17HasStorageRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 706 | getRefs() { \ | 354 | 706 | auto &refs = Name##ZoneRefs; \ | 355 | 706 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 706 | auto idx = TypeID<Request>::localID; \ | 359 | 706 | if (refs[idx].isNull()) { \ | 360 | 7 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 7 | } \ | 362 | 706 | return refs[idx].template get<Request>(); \ | 363 | 706 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22StorageImplInfoRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.26k | getRefs() { \ | 354 | 1.26k | auto &refs = Name##ZoneRefs; \ | 355 | 1.26k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.26k | auto idx = TypeID<Request>::localID; \ | 359 | 1.26k | if (refs[idx].isNull()) { \ | 360 | 7 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 7 | } \ | 362 | 1.26k | return refs[idx].template get<Request>(); \ | 363 | 1.26k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24SetterAccessLevelRequestENS_15TypeIDZoneTypesILNS_4ZoneE11EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 48 | getRefs() { \ | 354 | 48 | auto &refs = Name##ZoneRefs; \ | 355 | 48 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 48 | auto idx = TypeID<Request>::localID; \ | 359 | 48 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 48 | return refs[idx].template get<Request>(); \ | 363 | 48 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22HasInitAccessorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 354 | getRefs() { \ | 354 | 354 | auto &refs = Name##ZoneRefs; \ | 355 | 354 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 354 | auto idx = TypeID<Request>::localID; \ | 359 | 354 | if (refs[idx].isNull()) { \ | 360 | 2 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 2 | } \ | 362 | 354 | return refs[idx].template get<Request>(); \ | 363 | 354 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27DefaultInitializerIsolationENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 33 | getRefs() { \ | 354 | 33 | auto &refs = Name##ZoneRefs; \ | 355 | 33 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 33 | auto idx = TypeID<Request>::localID; \ | 359 | 33 | if (refs[idx].isNull()) { \ | 360 | 5 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 5 | } \ | 362 | 33 | return refs[idx].template get<Request>(); \ | 363 | 33 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20NamingPatternRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 41 | getRefs() { \ | 354 | 41 | auto &refs = Name##ZoneRefs; \ | 355 | 41 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 41 | auto idx = TypeID<Request>::localID; \ | 359 | 41 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 41 | return refs[idx].template get<Request>(); \ | 363 | 41 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21ParamSpecifierRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 3.39k | getRefs() { \ | 354 | 3.39k | auto &refs = Name##ZoneRefs; \ | 355 | 3.39k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 3.39k | auto idx = TypeID<Request>::localID; \ | 359 | 3.39k | if (refs[idx].isNull()) { \ | 360 | 4 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 4 | } \ | 362 | 3.39k | return refs[idx].template get<Request>(); \ | 363 | 3.39k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31AttachedPropertyWrappersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 2.97k | getRefs() { \ | 354 | 2.97k | auto &refs = Name##ZoneRefs; \ | 355 | 2.97k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 2.97k | auto idx = TypeID<Request>::localID; \ | 359 | 2.97k | if (refs[idx].isNull()) { \ | 360 | 6 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 6 | } \ | 362 | 2.97k | return refs[idx].template get<Request>(); \ | 363 | 2.97k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24CustomAttrNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_34AttachedPropertyWrapperTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_41PropertyWrapperBackingPropertyTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_40PropertyWrapperAuxiliaryVariablesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_37PropertyWrapperInitializerInfoRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_32PropertyWrapperMutabilityRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 50 | getRefs() { \ | 354 | 50 | auto &refs = Name##ZoneRefs; \ | 355 | 50 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 50 | auto idx = TypeID<Request>::localID; \ | 359 | 50 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 50 | return refs[idx].template get<Request>(); \ | 363 | 50 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26LazyStoragePropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_33DefaultArgumentInitContextRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26DefaultArgumentExprRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26DefaultArgumentTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24ResultBuilderTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 22 | getRefs() { \ | 354 | 22 | auto &refs = Name##ZoneRefs; \ | 355 | 22 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 22 | auto idx = TypeID<Request>::localID; \ | 359 | 22 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 22 | return refs[idx].template get<Request>(); \ | 363 | 22 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28AttachedResultBuilderRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 54 | getRefs() { \ | 354 | 54 | auto &refs = Name##ZoneRefs; \ | 355 | 54 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 54 | auto idx = TypeID<Request>::localID; \ | 359 | 54 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 54 | return refs[idx].template get<Request>(); \ | 363 | 54 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_17ResultTypeRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.82k | getRefs() { \ | 354 | 1.82k | auto &refs = Name##ZoneRefs; \ | 355 | 1.82k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.82k | auto idx = TypeID<Request>::localID; \ | 359 | 1.82k | if (refs[idx].isNull()) { \ | 360 | 6 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 6 | } \ | 362 | 1.82k | return refs[idx].template get<Request>(); \ | 363 | 1.82k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18RenamedDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_32ParseAbstractFunctionBodyRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 3.11k | getRefs() { \ | 354 | 3.11k | auto &refs = Name##ZoneRefs; \ | 355 | 3.11k | if (refs.empty()) { \ | 356 | 3 | refs.resize(ZoneTypes::Count); \ | 357 | 3 | } \ | 358 | 3.11k | auto idx = TypeID<Request>::localID; \ | 359 | 3.11k | if (refs[idx].isNull()) { \ | 360 | 5 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 5 | } \ | 362 | 3.11k | return refs[idx].template get<Request>(); \ | 363 | 3.11k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28TypeCheckFunctionBodyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 232 | getRefs() { \ | 354 | 232 | auto &refs = Name##ZoneRefs; \ | 355 | 232 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 232 | auto idx = TypeID<Request>::localID; \ | 359 | 232 | if (refs[idx].isNull()) { \ | 360 | 6 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 6 | } \ | 362 | 232 | return refs[idx].template get<Request>(); \ | 363 | 232 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28IsFunctionBodySkippedRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 360 | getRefs() { \ | 354 | 360 | auto &refs = Name##ZoneRefs; \ | 355 | 360 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 360 | auto idx = TypeID<Request>::localID; \ | 359 | 360 | if (refs[idx].isNull()) { \ | 360 | 6 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 6 | } \ | 362 | 360 | return refs[idx].template get<Request>(); \ | 363 | 360 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26NeedsNewVTableEntryRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 52 | getRefs() { \ | 354 | 52 | auto &refs = Name##ZoneRefs; \ | 355 | 52 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 52 | auto idx = TypeID<Request>::localID; \ | 359 | 52 | if (refs[idx].isNull()) { \ | 360 | 2 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 2 | } \ | 362 | 52 | return refs[idx].template get<Request>(); \ | 363 | 52 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23FunctionOperatorRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_15IsStaticRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 8.75k | getRefs() { \ | 354 | 8.75k | auto &refs = Name##ZoneRefs; \ | 355 | 8.75k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 8.75k | auto idx = TypeID<Request>::localID; \ | 359 | 8.75k | if (refs[idx].isNull()) { \ | 360 | 6 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 6 | } \ | 362 | 8.75k | return refs[idx].template get<Request>(); \ | 363 | 8.75k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_19SimpleDidSetRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21SelfAccessKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 3.78k | getRefs() { \ | 354 | 3.78k | auto &refs = Name##ZoneRefs; \ | 355 | 3.78k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 3.78k | auto idx = TypeID<Request>::localID; \ | 359 | 3.78k | if (refs[idx].isNull()) { \ | 360 | 4 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 4 | } \ | 362 | 3.78k | return refs[idx].template get<Request>(); \ | 363 | 3.78k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20EnumRawValuesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_15InitKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 12 | getRefs() { \ | 354 | 12 | auto &refs = Name##ZoneRefs; \ | 355 | 12 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 12 | auto idx = TypeID<Request>::localID; \ | 359 | 12 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 12 | return refs[idx].template get<Request>(); \ | 363 | 12 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_19BodyInitKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 27 | getRefs() { \ | 354 | 27 | auto &refs = Name##ZoneRefs; \ | 355 | 27 | if (refs.empty()) { \ | 356 | 3 | refs.resize(ZoneTypes::Count); \ | 357 | 3 | } \ | 358 | 27 | auto idx = TypeID<Request>::localID; \ | 359 | 27 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 27 | return refs[idx].template get<Request>(); \ | 363 | 27 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30OperatorPrecedenceGroupRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 12 | getRefs() { \ | 354 | 12 | auto &refs = Name##ZoneRefs; \ | 355 | 12 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 12 | auto idx = TypeID<Request>::localID; \ | 359 | 12 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 12 | return refs[idx].template get<Request>(); \ | 363 | 12 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21ActorIsolationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 1.71k | getRefs() { \ | 354 | 1.71k | auto &refs = Name##ZoneRefs; \ | 355 | 1.71k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 1.71k | auto idx = TypeID<Request>::localID; \ | 359 | 1.71k | if (refs[idx].isNull()) { \ | 360 | 6 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 6 | } \ | 362 | 1.71k | return refs[idx].template get<Request>(); \ | 363 | 1.71k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31ExpandMacroExpansionExprRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24ResolveMacroConformancesENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22MacroDefinitionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28ResolveImplicitMemberRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv DeclContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26FragileFunctionKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 224 | getRefs() { \ | 354 | 224 | auto &refs = Name##ZoneRefs; \ | 355 | 224 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 224 | auto idx = TypeID<Request>::localID; \ | 359 | 224 | if (refs[idx].isNull()) { \ | 360 | 6 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 6 | } \ | 362 | 224 | return refs[idx].template get<Request>(); \ | 363 | 224 | } |
DeclContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_19ParseMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 640 | getRefs() { \ | 354 | 640 | auto &refs = Name##ZoneRefs; \ | 355 | 640 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 640 | auto idx = TypeID<Request>::localID; \ | 359 | 640 | if (refs[idx].isNull()) { \ | 360 | 4 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 4 | } \ | 362 | 640 | return refs[idx].template get<Request>(); \ | 363 | 640 | } |
DeclContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_17ABIMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 16 | getRefs() { \ | 354 | 16 | auto &refs = Name##ZoneRefs; \ | 355 | 16 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 16 | auto idx = TypeID<Request>::localID; \ | 359 | 16 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 16 | return refs[idx].template get<Request>(); \ | 363 | 16 | } |
DeclContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_17AllMembersRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 2 | getRefs() { \ | 354 | 2 | auto &refs = Name##ZoneRefs; \ | 355 | 2 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 2 | auto idx = TypeID<Request>::localID; \ | 359 | 2 | if (refs[idx].isNull()) { \ | 360 | 2 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 2 | } \ | 362 | 2 | return refs[idx].template get<Request>(); \ | 363 | 2 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_48GetDistributedActorArgumentDecodingMethodRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_43GetDistributedActorInvocationDecoderRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_49GetDistributedRemoteCallTargetInitFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_51GetDistributedRemoteCallArgumentInitFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_50GetDistributedActorSystemRemoteCallFunctionRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26GetDistributedThunkRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_40GetDistributedActorSystemPropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_36GetDistributedActorIDPropertyRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27SemanticBriefCommentRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_36PolymorphicEffectRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Effects.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28PolymorphicEffectKindRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 64 | getRefs() { \ | 354 | 64 | auto &refs = Name##ZoneRefs; \ | 355 | 64 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 64 | auto idx = TypeID<Request>::localID; \ | 359 | 64 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 64 | return refs[idx].template get<Request>(); \ | 363 | 64 | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27ConformanceHasEffectRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31CallerSideDefaultArgExprRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26LocalDiscriminatorsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21ClosureEffectsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv GenericSignature.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31AbstractGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 37 | getRefs() { \ | 354 | 37 | auto &refs = Name##ZoneRefs; \ | 355 | 37 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 37 | auto idx = TypeID<Request>::localID; \ | 359 | 37 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 37 | return refs[idx].template get<Request>(); \ | 363 | 37 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22IsNonUserModuleRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28ModuleImplicitImportsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25PrimarySourceFilesRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26MangleLocalTypeDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21ExpandExtensionMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 5.36k | getRefs() { \ | 354 | 5.36k | auto &refs = Name##ZoneRefs; \ | 355 | 5.36k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 5.36k | auto idx = TypeID<Request>::localID; \ | 359 | 5.36k | if (refs[idx].isNull()) { \ | 360 | 5 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 5 | } \ | 362 | 5.36k | return refs[idx].template get<Request>(); \ | 363 | 5.36k | } |
Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26GetImplicitSendableRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 18 | getRefs() { \ | 354 | 18 | auto &refs = Name##ZoneRefs; \ | 355 | 18 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 18 | auto idx = TypeID<Request>::localID; \ | 359 | 18 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 18 | return refs[idx].template get<Request>(); \ | 363 | 18 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_41GetDistributedActorImplicitCodableRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22ParseSourceFileRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 82 | getRefs() { \ | 354 | 82 | auto &refs = Name##ZoneRefs; \ | 355 | 82 | if (refs.empty()) { \ | 356 | 4 | refs.resize(ZoneTypes::Count); \ | 357 | 4 | } \ | 358 | 82 | auto idx = TypeID<Request>::localID; \ | 359 | 82 | if (refs[idx].isNull()) { \ | 360 | 7 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 7 | } \ | 362 | 82 | return refs[idx].template get<Request>(); \ | 363 | 82 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_29HasImportsMatchingFlagRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_16SPIGroupsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 2.86k | getRefs() { \ | 354 | 2.86k | auto &refs = Name##ZoneRefs; \ | 355 | 2.86k | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 2.86k | auto idx = TypeID<Request>::localID; \ | 359 | 2.86k | if (refs[idx].isNull()) { \ | 360 | 6 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 6 | } \ | 362 | 2.86k | return refs[idx].template get<Request>(); \ | 363 | 2.86k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25ModuleLibraryLevelRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25ParseTopLevelDeclsRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 64 | getRefs() { \ | 354 | 64 | auto &refs = Name##ZoneRefs; \ | 355 | 64 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 64 | auto idx = TypeID<Request>::localID; \ | 359 | 64 | if (refs[idx].isNull()) { \ | 360 | 7 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 7 | } \ | 362 | 64 | return refs[idx].template get<Request>(); \ | 363 | 64 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_25ExportedSourceFileRequestENS_15TypeIDZoneTypesILNS_4ZoneE8EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22GetSourceFileAsyncNodeENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 4 | getRefs() { \ | 354 | 4 | auto &refs = Name##ZoneRefs; \ | 355 | 4 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 4 | auto idx = TypeID<Request>::localID; \ | 359 | 4 | if (refs[idx].isNull()) { \ | 360 | 2 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 2 | } \ | 362 | 4 | return refs[idx].template get<Request>(); \ | 363 | 4 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_32LookupConformanceInModuleRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ModuleNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21LookupInModuleRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_35ExpandSynthesizedMemberMacroRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 44 | getRefs() { \ | 354 | 44 | auto &refs = Name##ZoneRefs; \ | 355 | 44 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 44 | auto idx = TypeID<Request>::localID; \ | 359 | 44 | if (refs[idx].isNull()) { \ | 360 | 4 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 4 | } \ | 362 | 44 | return refs[idx].template get<Request>(); \ | 363 | 44 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21ExpandExtensionMacrosENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_40PotentialMacroExpansionsInContextRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 136 | getRefs() { \ | 354 | 136 | auto &refs = Name##ZoneRefs; \ | 355 | 136 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 136 | auto idx = TypeID<Request>::localID; \ | 359 | 136 | if (refs[idx].isNull()) { \ | 360 | 2 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 2 | } \ | 362 | 136 | return refs[idx].template get<Request>(); \ | 363 | 136 | } |
NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21SuperclassDeclRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 876 | getRefs() { \ | 354 | 876 | auto &refs = Name##ZoneRefs; \ | 355 | 876 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 876 | auto idx = TypeID<Request>::localID; \ | 359 | 876 | if (refs[idx].isNull()) { \ | 360 | 4 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 4 | } \ | 362 | 876 | return refs[idx].template get<Request>(); \ | 363 | 876 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30IsCallAsFunctionNominalRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_38HasDynamicMemberLookupAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 20 | getRefs() { \ | 354 | 20 | auto &refs = Name##ZoneRefs; \ | 355 | 20 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 20 | auto idx = TypeID<Request>::localID; \ | 359 | 20 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 20 | return refs[idx].template get<Request>(); \ | 363 | 20 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_34HasDynamicCallableAttributeRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_32SelfBoundsFromWhereClauseRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_37SelfBoundsFromGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24UnqualifiedLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_19DirectLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24CXXNamespaceMemberLookupENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23ClangRecordMemberLookupENS_15TypeIDZoneTypesILNS_4ZoneE139EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22AnyObjectLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_22QualifiedLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28ModuleQualifiedLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_36UnderlyingTypeDeclsReferencedRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31InheritedDeclsReferencedRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_26LookupInfixOperatorRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 8 | getRefs() { \ | 354 | 8 | auto &refs = Name##ZoneRefs; \ | 355 | 8 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 8 | auto idx = TypeID<Request>::localID; \ | 359 | 8 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 8 | return refs[idx].template get<Request>(); \ | 363 | 8 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27LookupPrefixOperatorRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28LookupPostfixOperatorRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28LookupPrecedenceGroupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 5 | getRefs() { \ | 354 | 5 | auto &refs = Name##ZoneRefs; \ | 355 | 5 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 5 | auto idx = TypeID<Request>::localID; \ | 359 | 5 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 5 | return refs[idx].template get<Request>(); \ | 363 | 5 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_27DirectOperatorLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_34DirectPrecedenceGroupLookupRequestENS_15TypeIDZoneTypesILNS_4ZoneE9EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_23ExprPatternMatchRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_30ConditionalRequirementsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 547 | getRefs() { \ | 354 | 547 | auto &refs = Name##ZoneRefs; \ | 355 | 547 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 547 | auto idx = TypeID<Request>::localID; \ | 359 | 547 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 547 | return refs[idx].template get<Request>(); \ | 363 | 547 | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18TypeWitnessRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_28AssociatedConformanceRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_19ValueWitnessRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 20 | getRefs() { \ | 354 | 20 | auto &refs = Name##ZoneRefs; \ | 355 | 20 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 20 | auto idx = TypeID<Request>::localID; \ | 359 | 20 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 20 | return refs[idx].template get<Request>(); \ | 363 | 20 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_37LookupAllConformancesInContextRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 243 | getRefs() { \ | 354 | 243 | auto &refs = Name##ZoneRefs; \ | 355 | 243 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 243 | auto idx = TypeID<Request>::localID; \ | 359 | 243 | if (refs[idx].isNull()) { \ | 360 | 4 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 4 | } \ | 362 | 243 | return refs[idx].template get<Request>(); \ | 363 | 243 | } |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_17RawCommentRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_31AbstractGenericSignatureRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_24IsSingleValueStmtRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18BreakTargetRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_21ContinueTargetRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv TypeCheckRequests.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_18RequirementRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 42 | getRefs() { \ | 354 | 42 | auto &refs = Name##ZoneRefs; \ | 355 | 42 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 42 | auto idx = TypeID<Request>::localID; \ | 359 | 42 | if (refs[idx].isNull()) { \ | 360 | 3 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 3 | } \ | 362 | 42 | return refs[idx].template get<Request>(); \ | 363 | 42 | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_40ExpandChildTypeRefinementContextsRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv Line | Count | Source | 353 | 16 | getRefs() { \ | 354 | 16 | auto &refs = Name##ZoneRefs; \ | 355 | 16 | if (refs.empty()) { \ | 356 | 0 | refs.resize(ZoneTypes::Count); \ | 357 | 0 | } \ | 358 | 16 | auto idx = TypeID<Request>::localID; \ | 359 | 16 | if (refs[idx].isNull()) { \ | 360 | 1 | refs[idx] = PerRequestReferences::makeEmpty<Request>(); \ | 361 | 1 | } \ | 362 | 16 | return refs[idx].template get<Request>(); \ | 363 | 16 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator17RequestReferences7getRefsINS_20USRGenerationRequestENS_15TypeIDZoneTypesILNS_4ZoneE10EEELPv0EEEPN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSE_9allocatorISH_EEEENS8_12DenseMapInfoISD_vEENS8_6detail12DenseMapPairISD_SK_EEEEv |
364 | | #include "swift/Basic/TypeIDZones.def" |
365 | | #undef SWIFT_TYPEID_ZONE |
366 | | |
367 | | public: |
368 | | template <typename Request> |
369 | | typename llvm::DenseMap<RequestKey<Request>, |
370 | | std::vector<DependencyCollector::Reference>>::const_iterator |
371 | 99.4k | find_as(const Request &req) { |
372 | 99.4k | auto *refs = getRefs<Request>(); |
373 | 99.4k | return refs->find_as(req); |
374 | 99.4k | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22SymbolSourceMapRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20USRGenerationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18RenamedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24IDEInspectionFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24ConstantValueInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22SymbolSourceMapRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ IRGen.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_12IRGenRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 1 | find_as(const Request &req) { | 372 | 1 | auto *refs = getRefs<Request>(); | 373 | 1 | return refs->find_as(req); | 374 | 1 | } |
SILGen.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18ASTLoweringRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 5 | find_as(const Request &req) { | 372 | 5 | auto *refs = getRefs<Request>(); | 373 | 5 | return refs->find_as(req); | 374 | 5 | } |
Unexecuted instantiation: Common.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28TangentStoredPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18ASTLoweringRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28ProvideDefaultImplForRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26ResolveProtocolNameRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28ProvideDefaultImplForRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_29CollectOverriddenDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23IsDeclApplicableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24TypeRelationCheckRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26MangleLocalTypeDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28PreCheckResultBuilderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31ExpandMacroExpansionExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ CSRanking.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_32CompareDeclSpecializationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 4 | find_as(const Request &req) { | 372 | 4 | auto *refs = getRefs<Request>(); | 373 | 4 | return refs->find_as(req); | 374 | 4 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_29EnumElementExprPatternRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_34HasDynamicCallableAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ CSStep.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25IsDeclRefinementOfRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 17 | find_as(const Request &req) { | 372 | 17 | auto *refs = getRefs<Request>(); | 373 | 17 | return refs->find_as(req); | 374 | 17 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_35HasUserDefinedDesignatedInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 15 | find_as(const Request &req) { | 372 | 15 | auto *refs = getRefs<Request>(); | 373 | 15 | return refs->find_as(req); | 374 | 15 | } |
Unexecuted instantiation: CodeSynthesis.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_44AreAllStoredPropertiesDefaultInitableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21ClosureEffectsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31ClosureHasExplicitResultRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23IsDeclApplicableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25PreCheckReturnStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_29SynthesizeMainFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21CustomAttrTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21CustomAttrTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_35DistributedModuleIsAvailableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31CheckDistributedFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30ValidatePrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_29SynthesizeMainFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 4 | find_as(const Request &req) { | 372 | 4 | auto *refs = getRefs<Request>(); | 373 | 4 | return refs->find_as(req); | 374 | 4 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_36HasCircularInheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26HasCircularRawValueRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22OverriddenDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30IsABICompatibleOverrideRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_34TypeCheckObjCImplementationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20InheritedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30ExternalMacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25CheckRedeclarationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 126 | find_as(const Request &req) { | 372 | 126 | auto *refs = getRefs<Request>(); | 373 | 126 | return refs->find_as(req); | 374 | 126 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22ApplyAccessNoteRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 287 | find_as(const Request &req) { | 372 | 287 | auto *refs = getRefs<Request>(); | 373 | 287 | return refs->find_as(req); | 374 | 287 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_19ResolveMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ TypeCheckExpr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18DefaultTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 39 | find_as(const Request &req) { | 372 | 39 | auto *refs = getRefs<Request>(); | 373 | 39 | return refs->find_as(req); | 374 | 39 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30ExternalMacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25CompilerPluginLoadRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31ExpandMacroExpansionDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ TypeCheckPattern.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18PatternTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 23 | find_as(const Request &req) { | 372 | 23 | auto *refs = getRefs<Request>(); | 373 | 23 | return refs->find_as(req); | 374 | 23 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31AttachedPropertyWrappersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21CustomAttrTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_40PotentialMacroExpansionsInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20InheritedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21CustomAttrTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25PreCheckReturnStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22ExpandPeerMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_32PropertyWrapperLValuenessRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20ExpandAccessorMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26TypeCheckSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 10 | find_as(const Request &req) { | 372 | 10 | auto *refs = getRefs<Request>(); | 373 | 10 | return refs->find_as(req); | 374 | 10 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_49CheckInconsistentImplementationOnlyImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_38CheckInconsistentSPIOnlyImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_36CheckInconsistentAccessLevelOnImportEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_41CheckInconsistentWeakLinkedImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_37ObjCInterfaceAndImplementationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30IDEInspectionSecondPassRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22ParseSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30TypeEraserHasViableInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28ResolveTypeEraserTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31ResolveRawLayoutLikeTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31SpecializeAttrTargetDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_36SerializeAttrGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_39DifferentiableAttributeTypeCheckRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 27 | find_as(const Request &req) { | 372 | 27 | auto *refs = getRefs<Request>(); | 373 | 27 | return refs->find_as(req); | 374 | 27 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_33DerivativeAttrOriginalDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_29ImplementsAttrProtocolRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_38InitAccessorReferencedVariablesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_33SemanticAvailableRangeAttrRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Availability.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30SemanticUnavailableAttrRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 10 | find_as(const Request &req) { | 372 | 10 | auto *refs = getRefs<Request>(); | 373 | 10 | return refs->find_as(req); | 374 | 10 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27ExpandMemberAttributeMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 989 | find_as(const Request &req) { | 372 | 989 | auto *refs = getRefs<Request>(); | 373 | 989 | return refs->find_as(req); | 374 | 989 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22ExpandPeerMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 260 | find_as(const Request &req) { | 372 | 260 | auto *refs = getRefs<Request>(); | 373 | 260 | return refs->find_as(req); | 374 | 260 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31ExpandMacroExpansionDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_19ResolveMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 582 | find_as(const Request &req) { | 372 | 582 | auto *refs = getRefs<Request>(); | 373 | 582 | return refs->find_as(req); | 374 | 582 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_17ThrownTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28IsAccessorTransparentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23GenericParamListRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 6.76k | find_as(const Request &req) { | 372 | 6.76k | auto *refs = getRefs<Request>(); | 373 | 6.76k | return refs->find_as(req); | 374 | 6.76k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23GenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 9.98k | find_as(const Request &req) { | 372 | 9.98k | auto *refs = getRefs<Request>(); | 373 | 9.98k | return refs->find_as(req); | 374 | 9.98k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25ScopedImportLookupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20InheritedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22ExtendedNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 5 | find_as(const Request &req) { | 372 | 5 | auto *refs = getRefs<Request>(); | 373 | 5 | return refs->find_as(req); | 374 | 5 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31DefaultAndMaxAccessLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_19ExtendedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 13 | find_as(const Request &req) { | 372 | 13 | auto *refs = getRefs<Request>(); | 373 | 13 | return refs->find_as(req); | 374 | 13 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26PatternBindingEntryRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30RequiresOpaqueAccessorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 18 | find_as(const Request &req) { | 372 | 18 | auto *refs = getRefs<Request>(); | 373 | 18 | return refs->find_as(req); | 374 | 18 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_36RequiresOpaqueModifyCoroutineRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 17 | find_as(const Request &req) { | 372 | 17 | auto *refs = getRefs<Request>(); | 373 | 17 | return refs->find_as(req); | 374 | 17 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25SynthesizeAccessorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30IsABICompatibleOverrideRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23IsGetterMutatingRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 129 | find_as(const Request &req) { | 372 | 129 | auto *refs = getRefs<Request>(); | 373 | 129 | return refs->find_as(req); | 374 | 129 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23IsSetterMutatingRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 91 | find_as(const Request &req) { | 372 | 91 | auto *refs = getRefs<Request>(); | 373 | 91 | return refs->find_as(req); | 374 | 91 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26OpaqueReadOwnershipRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 35 | find_as(const Request &req) { | 372 | 35 | auto *refs = getRefs<Request>(); | 373 | 35 | return refs->find_as(req); | 374 | 35 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22OverriddenDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 4.20k | find_as(const Request &req) { | 372 | 4.20k | auto *refs = getRefs<Request>(); | 373 | 4.20k | return refs->find_as(req); | 374 | 4.20k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23OpaqueResultTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_13IsObjCRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 6.38k | find_as(const Request &req) { | 372 | 6.38k | auto *refs = getRefs<Request>(); | 373 | 6.38k | return refs->find_as(req); | 374 | 6.38k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_14IsFinalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 73 | find_as(const Request &req) { | 372 | 73 | auto *refs = getRefs<Request>(); | 373 | 73 | return refs->find_as(req); | 374 | 73 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_17IsMoveOnlyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 752 | find_as(const Request &req) { | 372 | 752 | auto *refs = getRefs<Request>(); | 373 | 752 | return refs->find_as(req); | 374 | 752 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_16IsDynamicRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 44 | find_as(const Request &req) { | 372 | 44 | auto *refs = getRefs<Request>(); | 373 | 44 | return refs->find_as(req); | 374 | 44 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30DynamicallyReplacedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 25 | find_as(const Request &req) { | 372 | 25 | auto *refs = getRefs<Request>(); | 373 | 25 | return refs->find_as(req); | 374 | 25 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_36IsImplicitlyUnwrappedOptionalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 4.40k | find_as(const Request &req) { | 372 | 4.40k | auto *refs = getRefs<Request>(); | 373 | 4.40k | return refs->find_as(req); | 374 | 4.40k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20InterfaceTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 31.2k | find_as(const Request &req) { | 372 | 31.2k | auto *refs = getRefs<Request>(); | 373 | 31.2k | return refs->find_as(req); | 374 | 31.2k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18AccessLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 8.25k | find_as(const Request &req) { | 372 | 8.25k | auto *refs = getRefs<Request>(); | 373 | 8.25k | return refs->find_as(req); | 374 | 8.25k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23StoredPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 304 | find_as(const Request &req) { | 372 | 304 | auto *refs = getRefs<Request>(); | 373 | 304 | return refs->find_as(req); | 374 | 304 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_29InitAccessorPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 12 | find_as(const Request &req) { | 372 | 12 | auto *refs = getRefs<Request>(); | 373 | 12 | return refs->find_as(req); | 374 | 12 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31MemberwiseInitPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 7 | find_as(const Request &req) { | 372 | 7 | auto *refs = getRefs<Request>(); | 373 | 7 | return refs->find_as(req); | 374 | 7 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_40StoredPropertiesAndMissingMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30PropertyWrapperTypeInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_14IsActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 625 | find_as(const Request &req) { | 372 | 625 | auto *refs = getRefs<Request>(); | 373 | 625 | return refs->find_as(req); | 374 | 625 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25IsDistributedActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 720 | find_as(const Request &req) { | 372 | 720 | auto *refs = getRefs<Request>(); | 373 | 720 | return refs->find_as(req); | 374 | 720 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21UnderlyingTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 126 | find_as(const Request &req) { | 372 | 126 | auto *refs = getRefs<Request>(); | 373 | 126 | return refs->find_as(req); | 374 | 126 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21StructuralTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28DefaultDefinitionTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18EnumRawTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24HasMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 12 | find_as(const Request &req) { | 372 | 12 | auto *refs = getRefs<Request>(); | 373 | 12 | return refs->find_as(req); | 374 | 12 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31SynthesizeMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 7 | find_as(const Request &req) { | 372 | 7 | auto *refs = getRefs<Request>(); | 373 | 7 | return refs->find_as(req); | 374 | 7 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_37ResolveEffectiveMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 23 | find_as(const Request &req) { | 372 | 23 | auto *refs = getRefs<Request>(); | 373 | 23 | return refs->find_as(req); | 374 | 23 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21HasDefaultInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28SynthesizeDefaultInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26GlobalActorInstanceRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20GetDestructorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 5 | find_as(const Request &req) { | 372 | 5 | auto *refs = getRefs<Request>(); | 373 | 5 | return refs->find_as(req); | 374 | 5 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21IsDefaultActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_39HasMissingDesignatedInitializersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_37InheritsSuperclassInitializersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25ClassAncestryFlagsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 6 | find_as(const Request &req) { | 372 | 6 | auto *refs = getRefs<Request>(); | 373 | 6 | return refs->find_as(req); | 374 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26HasCircularRawValueRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25InheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 972 | find_as(const Request &req) { | 372 | 972 | auto *refs = getRefs<Request>(); | 373 | 972 | return refs->find_as(req); | 374 | 972 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27ProtocolRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 63 | find_as(const Request &req) { | 372 | 63 | auto *refs = getRefs<Request>(); | 373 | 63 | return refs->find_as(req); | 374 | 63 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21SuperclassTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 3 | find_as(const Request &req) { | 372 | 3 | auto *refs = getRefs<Request>(); | 373 | 3 | return refs->find_as(req); | 374 | 3 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21SuperclassDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28ProtocolRequiresClassRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 30 | find_as(const Request &req) { | 372 | 30 | auto *refs = getRefs<Request>(); | 373 | 30 | return refs->find_as(req); | 374 | 30 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_32ExistentialConformsToSelfRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 6 | find_as(const Request &req) { | 372 | 6 | auto *refs = getRefs<Request>(); | 373 | 6 | return refs->find_as(req); | 374 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_42HasSelfOrAssociatedTypeRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_29PrimaryAssociatedTypesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_29StructuralRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 4 | find_as(const Request &req) { | 372 | 4 | auto *refs = getRefs<Request>(); | 373 | 4 | return refs->find_as(req); | 374 | 4 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28TypeAliasRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27ProtocolDependenciesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 727 | find_as(const Request &req) { | 372 | 727 | auto *refs = getRefs<Request>(); | 373 | 727 | return refs->find_as(req); | 374 | 727 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27RequirementSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 1.11k | find_as(const Request &req) { | 372 | 1.11k | auto *refs = getRefs<Request>(); | 373 | 1.11k | return refs->find_as(req); | 374 | 1.11k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_36HasCircularInheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_17HasStorageRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 353 | find_as(const Request &req) { | 372 | 353 | auto *refs = getRefs<Request>(); | 373 | 353 | return refs->find_as(req); | 374 | 353 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22StorageImplInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 632 | find_as(const Request &req) { | 372 | 632 | auto *refs = getRefs<Request>(); | 373 | 632 | return refs->find_as(req); | 374 | 632 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24SetterAccessLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 24 | find_as(const Request &req) { | 372 | 24 | auto *refs = getRefs<Request>(); | 373 | 24 | return refs->find_as(req); | 374 | 24 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22HasInitAccessorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 177 | find_as(const Request &req) { | 372 | 177 | auto *refs = getRefs<Request>(); | 373 | 177 | return refs->find_as(req); | 374 | 177 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27DefaultInitializerIsolationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20NamingPatternRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 11 | find_as(const Request &req) { | 372 | 11 | auto *refs = getRefs<Request>(); | 373 | 11 | return refs->find_as(req); | 374 | 11 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21ParamSpecifierRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 1.69k | find_as(const Request &req) { | 372 | 1.69k | auto *refs = getRefs<Request>(); | 373 | 1.69k | return refs->find_as(req); | 374 | 1.69k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31AttachedPropertyWrappersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 1.48k | find_as(const Request &req) { | 372 | 1.48k | auto *refs = getRefs<Request>(); | 373 | 1.48k | return refs->find_as(req); | 374 | 1.48k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_34AttachedPropertyWrapperTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_41PropertyWrapperBackingPropertyTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_40PropertyWrapperAuxiliaryVariablesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_37PropertyWrapperInitializerInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_32PropertyWrapperMutabilityRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 25 | find_as(const Request &req) { | 372 | 25 | auto *refs = getRefs<Request>(); | 373 | 25 | return refs->find_as(req); | 374 | 25 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26LazyStoragePropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_33DefaultArgumentInitContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26DefaultArgumentExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26DefaultArgumentTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24ResultBuilderTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 11 | find_as(const Request &req) { | 372 | 11 | auto *refs = getRefs<Request>(); | 373 | 11 | return refs->find_as(req); | 374 | 11 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28AttachedResultBuilderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 27 | find_as(const Request &req) { | 372 | 27 | auto *refs = getRefs<Request>(); | 373 | 27 | return refs->find_as(req); | 374 | 27 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_17ResultTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 900 | find_as(const Request &req) { | 372 | 900 | auto *refs = getRefs<Request>(); | 373 | 900 | return refs->find_as(req); | 374 | 900 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18RenamedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_32ParseAbstractFunctionBodyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 1.53k | find_as(const Request &req) { | 372 | 1.53k | auto *refs = getRefs<Request>(); | 373 | 1.53k | return refs->find_as(req); | 374 | 1.53k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28TypeCheckFunctionBodyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 87 | find_as(const Request &req) { | 372 | 87 | auto *refs = getRefs<Request>(); | 373 | 87 | return refs->find_as(req); | 374 | 87 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28IsFunctionBodySkippedRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 180 | find_as(const Request &req) { | 372 | 180 | auto *refs = getRefs<Request>(); | 373 | 180 | return refs->find_as(req); | 374 | 180 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26NeedsNewVTableEntryRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 26 | find_as(const Request &req) { | 372 | 26 | auto *refs = getRefs<Request>(); | 373 | 26 | return refs->find_as(req); | 374 | 26 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23FunctionOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_15IsStaticRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 4.37k | find_as(const Request &req) { | 372 | 4.37k | auto *refs = getRefs<Request>(); | 373 | 4.37k | return refs->find_as(req); | 374 | 4.37k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_19SimpleDidSetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21SelfAccessKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 1.89k | find_as(const Request &req) { | 372 | 1.89k | auto *refs = getRefs<Request>(); | 373 | 1.89k | return refs->find_as(req); | 374 | 1.89k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20EnumRawValuesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_15InitKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 6 | find_as(const Request &req) { | 372 | 6 | auto *refs = getRefs<Request>(); | 373 | 6 | return refs->find_as(req); | 374 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_19BodyInitKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30OperatorPrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 6 | find_as(const Request &req) { | 372 | 6 | auto *refs = getRefs<Request>(); | 373 | 6 | return refs->find_as(req); | 374 | 6 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21ActorIsolationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 785 | find_as(const Request &req) { | 372 | 785 | auto *refs = getRefs<Request>(); | 373 | 785 | return refs->find_as(req); | 374 | 785 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31ExpandMacroExpansionExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22MacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ DeclContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26FragileFunctionKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 112 | find_as(const Request &req) { | 372 | 112 | auto *refs = getRefs<Request>(); | 373 | 112 | return refs->find_as(req); | 374 | 112 | } |
DeclContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_19ParseMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 320 | find_as(const Request &req) { | 372 | 320 | auto *refs = getRefs<Request>(); | 373 | 320 | return refs->find_as(req); | 374 | 320 | } |
DeclContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_17ABIMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 6 | find_as(const Request &req) { | 372 | 6 | auto *refs = getRefs<Request>(); | 373 | 6 | return refs->find_as(req); | 374 | 6 | } |
Unexecuted instantiation: DeclContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_17AllMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_48GetDistributedActorArgumentDecodingMethodRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_43GetDistributedActorInvocationDecoderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26GetDistributedThunkRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_40GetDistributedActorSystemPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_36GetDistributedActorIDPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27SemanticBriefCommentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_36PolymorphicEffectRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Effects.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28PolymorphicEffectKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 32 | find_as(const Request &req) { | 372 | 32 | auto *refs = getRefs<Request>(); | 373 | 32 | return refs->find_as(req); | 374 | 32 | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27ConformanceHasEffectRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31CallerSideDefaultArgExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21ClosureEffectsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ GenericSignature.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31AbstractGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 18 | find_as(const Request &req) { | 372 | 18 | auto *refs = getRefs<Request>(); | 373 | 18 | return refs->find_as(req); | 374 | 18 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22IsNonUserModuleRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28ModuleImplicitImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25PrimarySourceFilesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26MangleLocalTypeDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 2.68k | find_as(const Request &req) { | 372 | 2.68k | auto *refs = getRefs<Request>(); | 373 | 2.68k | return refs->find_as(req); | 374 | 2.68k | } |
Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26GetImplicitSendableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 4 | find_as(const Request &req) { | 372 | 4 | auto *refs = getRefs<Request>(); | 373 | 4 | return refs->find_as(req); | 374 | 4 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_41GetDistributedActorImplicitCodableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22ParseSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 41 | find_as(const Request &req) { | 372 | 41 | auto *refs = getRefs<Request>(); | 373 | 41 | return refs->find_as(req); | 374 | 41 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_29HasImportsMatchingFlagRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_16SPIGroupsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 1.43k | find_as(const Request &req) { | 372 | 1.43k | auto *refs = getRefs<Request>(); | 373 | 1.43k | return refs->find_as(req); | 374 | 1.43k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25ModuleLibraryLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25ParseTopLevelDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 32 | find_as(const Request &req) { | 372 | 32 | auto *refs = getRefs<Request>(); | 373 | 32 | return refs->find_as(req); | 374 | 32 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_25ExportedSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Module.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_22GetSourceFileAsyncNodeEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 2 | find_as(const Request &req) { | 372 | 2 | auto *refs = getRefs<Request>(); | 373 | 2 | return refs->find_as(req); | 374 | 2 | } |
NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 22 | find_as(const Request &req) { | 372 | 22 | auto *refs = getRefs<Request>(); | 373 | 22 | return refs->find_as(req); | 374 | 22 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_40PotentialMacroExpansionsInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 68 | find_as(const Request &req) { | 372 | 68 | auto *refs = getRefs<Request>(); | 373 | 68 | return refs->find_as(req); | 374 | 68 | } |
NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21SuperclassDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 438 | find_as(const Request &req) { | 372 | 438 | auto *refs = getRefs<Request>(); | 373 | 438 | return refs->find_as(req); | 374 | 438 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30IsCallAsFunctionNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_38HasDynamicMemberLookupAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 8 | find_as(const Request &req) { | 372 | 8 | auto *refs = getRefs<Request>(); | 373 | 8 | return refs->find_as(req); | 374 | 8 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_34HasDynamicCallableAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_26LookupInfixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 2 | find_as(const Request &req) { | 372 | 2 | auto *refs = getRefs<Request>(); | 373 | 2 | return refs->find_as(req); | 374 | 2 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_27LookupPrefixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28LookupPostfixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28LookupPrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 2 | find_as(const Request &req) { | 372 | 2 | auto *refs = getRefs<Request>(); | 373 | 2 | return refs->find_as(req); | 374 | 2 | } |
Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_23ExprPatternMatchRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_30ConditionalRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 271 | find_as(const Request &req) { | 372 | 271 | auto *refs = getRefs<Request>(); | 373 | 271 | return refs->find_as(req); | 374 | 271 | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18TypeWitnessRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_28AssociatedConformanceRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_19ValueWitnessRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 10 | find_as(const Request &req) { | 372 | 10 | auto *refs = getRefs<Request>(); | 373 | 10 | return refs->find_as(req); | 374 | 10 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_37LookupAllConformancesInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 117 | find_as(const Request &req) { | 372 | 117 | auto *refs = getRefs<Request>(); | 373 | 117 | return refs->find_as(req); | 374 | 117 | } |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_17RawCommentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_31AbstractGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_24IsSingleValueStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18BreakTargetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_21ContinueTargetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ TypeCheckRequests.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_18RequirementRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 2 | find_as(const Request &req) { | 372 | 2 | auto *refs = getRefs<Request>(); | 373 | 2 | return refs->find_as(req); | 374 | 2 | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_40ExpandChildTypeRefinementContextsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ Line | Count | Source | 371 | 8 | find_as(const Request &req) { | 372 | 8 | auto *refs = getRefs<Request>(); | 373 | 8 | return refs->find_as(req); | 374 | 8 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator17RequestReferences7find_asINS_20USRGenerationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorERKS8_ |
375 | | |
376 | | template <typename Request> |
377 | | typename llvm::DenseMap<RequestKey<Request>, |
378 | | std::vector<DependencyCollector::Reference>>::const_iterator |
379 | 99.4k | end() { |
380 | 99.4k | auto *refs = getRefs<Request>(); |
381 | 99.4k | return refs->end(); |
382 | 99.4k | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22SymbolSourceMapRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20USRGenerationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18RenamedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Frontend.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24IDEInspectionFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ConstExtract.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24ConstantValueInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: GenClass.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: GenDistributed.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: GenDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: GenEnum.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: GenHeap.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: GenMeta.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: IRGen.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22SymbolSourceMapRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv IRGen.cpp:_ZN5swift9evaluator17RequestReferences3endINS_12IRGenRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 1 | end() { | 380 | 1 | auto *refs = getRefs<Request>(); | 381 | 1 | return refs->end(); | 382 | 1 | } |
SILGen.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18ASTLoweringRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 5 | end() { | 380 | 5 | auto *refs = getRefs<Request>(); | 381 | 5 | return refs->end(); | 382 | 5 | } |
Unexecuted instantiation: Common.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28TangentStoredPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18ASTLoweringRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: IDERequests.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28ProvideDefaultImplForRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences3endINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26ResolveProtocolNameRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28ProvideDefaultImplForRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences3endINS_29CollectOverriddenDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23IsDeclApplicableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24TypeRelationCheckRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Serialization.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26MangleLocalTypeDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: BuilderTransform.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28PreCheckResultBuilderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: CSApply.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31ExpandMacroExpansionExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv CSRanking.cpp:_ZN5swift9evaluator17RequestReferences3endINS_32CompareDeclSpecializationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 4 | end() { | 380 | 4 | auto *refs = getRefs<Request>(); | 381 | 4 | return refs->end(); | 382 | 4 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator17RequestReferences3endINS_29EnumElementExprPatternRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: CSSimplify.cpp:_ZN5swift9evaluator17RequestReferences3endINS_34HasDynamicCallableAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv CSStep.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25IsDeclRefinementOfRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 17 | end() { | 380 | 17 | auto *refs = getRefs<Request>(); | 381 | 17 | return refs->end(); | 382 | 17 | } |
CodeSynthesis.cpp:_ZN5swift9evaluator17RequestReferences3endINS_35HasUserDefinedDesignatedInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 15 | end() { | 380 | 15 | auto *refs = getRefs<Request>(); | 381 | 15 | return refs->end(); | 382 | 15 | } |
Unexecuted instantiation: CodeSynthesis.cpp:_ZN5swift9evaluator17RequestReferences3endINS_44AreAllStoredPropertiesDefaultInitableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21ClosureEffectsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ConstraintSystem.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31ClosureHasExplicitResultRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23IsDeclApplicableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN5swift9evaluator17RequestReferences3endINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: PreCheckExpr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25PreCheckReturnStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_29SynthesizeMainFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21CustomAttrTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21CustomAttrTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator17RequestReferences3endINS_35DistributedModuleIsAvailableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31CheckDistributedFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30ValidatePrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_29SynthesizeMainFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 4 | end() { | 380 | 4 | auto *refs = getRefs<Request>(); | 381 | 4 | return refs->end(); | 382 | 4 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_36HasCircularInheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26HasCircularRawValueRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22OverriddenDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30IsABICompatibleOverrideRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN5swift9evaluator17RequestReferences3endINS_34TypeCheckObjCImplementationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20InheritedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30ExternalMacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25CheckRedeclarationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 126 | end() { | 380 | 126 | auto *refs = getRefs<Request>(); | 381 | 126 | return refs->end(); | 382 | 126 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22ApplyAccessNoteRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 287 | end() { | 380 | 287 | auto *refs = getRefs<Request>(); | 381 | 287 | return refs->end(); | 382 | 287 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN5swift9evaluator17RequestReferences3endINS_19ResolveMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv TypeCheckExpr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18DefaultTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 39 | end() { | 380 | 39 | auto *refs = getRefs<Request>(); | 381 | 39 | return refs->end(); | 382 | 39 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30ExternalMacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25CompilerPluginLoadRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31ExpandMacroExpansionDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv TypeCheckPattern.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18PatternTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 23 | end() { | 380 | 23 | auto *refs = getRefs<Request>(); | 381 | 23 | return refs->end(); | 382 | 23 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31AttachedPropertyWrappersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21CustomAttrTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN5swift9evaluator17RequestReferences3endINS_40PotentialMacroExpansionsInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20InheritedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21CustomAttrTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25PreCheckReturnStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckStmt.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences3endINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22ExpandPeerMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences3endINS_32PropertyWrapperLValuenessRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20ExpandAccessorMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26TypeCheckSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 10 | end() { | 380 | 10 | auto *refs = getRefs<Request>(); | 381 | 10 | return refs->end(); | 382 | 10 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences3endINS_49CheckInconsistentImplementationOnlyImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences3endINS_38CheckInconsistentSPIOnlyImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences3endINS_36CheckInconsistentAccessLevelOnImportEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences3endINS_41CheckInconsistentWeakLinkedImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: TypeChecker.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31InferredGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN5swift9evaluator17RequestReferences3endINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ClangImporter.cpp:_ZN5swift9evaluator17RequestReferences3endINS_37ObjCInterfaceAndImplementationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ImportDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Parser.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30IDEInspectionSecondPassRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ParseRequests.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22ParseSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ASTContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30TypeEraserHasViableInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28ResolveTypeEraserTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31ResolveRawLayoutLikeTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31SpecializeAttrTargetDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_36SerializeAttrGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_39DifferentiableAttributeTypeCheckRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 27 | end() { | 380 | 27 | auto *refs = getRefs<Request>(); | 381 | 27 | return refs->end(); | 382 | 27 | } |
Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_33DerivativeAttrOriginalDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_29ImplementsAttrProtocolRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Attr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_38InitAccessorReferencedVariablesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Availability.cpp:_ZN5swift9evaluator17RequestReferences3endINS_33SemanticAvailableRangeAttrRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Availability.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30SemanticUnavailableAttrRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 10 | end() { | 380 | 10 | auto *refs = getRefs<Request>(); | 381 | 10 | return refs->end(); | 382 | 10 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27ExpandMemberAttributeMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 989 | end() { | 380 | 989 | auto *refs = getRefs<Request>(); | 381 | 989 | return refs->end(); | 382 | 989 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22ExpandPeerMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 260 | end() { | 380 | 260 | auto *refs = getRefs<Request>(); | 381 | 260 | return refs->end(); | 382 | 260 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31ExpandMacroExpansionDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_19ResolveMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27GlobalActorAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 582 | end() { | 380 | 582 | auto *refs = getRefs<Request>(); | 381 | 582 | return refs->end(); | 382 | 582 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_17ThrownTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28IsAccessorTransparentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23GenericParamListRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 6.76k | end() { | 380 | 6.76k | auto *refs = getRefs<Request>(); | 381 | 6.76k | return refs->end(); | 382 | 6.76k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23GenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 9.98k | end() { | 380 | 9.98k | auto *refs = getRefs<Request>(); | 381 | 9.98k | return refs->end(); | 382 | 9.98k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25ScopedImportLookupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20InheritedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22ExtendedNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 5 | end() { | 380 | 5 | auto *refs = getRefs<Request>(); | 381 | 5 | return refs->end(); | 382 | 5 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31DefaultAndMaxAccessLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_19ExtendedTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 13 | end() { | 380 | 13 | auto *refs = getRefs<Request>(); | 381 | 13 | return refs->end(); | 382 | 13 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26PatternBindingEntryRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30RequiresOpaqueAccessorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 18 | end() { | 380 | 18 | auto *refs = getRefs<Request>(); | 381 | 18 | return refs->end(); | 382 | 18 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_36RequiresOpaqueModifyCoroutineRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 17 | end() { | 380 | 17 | auto *refs = getRefs<Request>(); | 381 | 17 | return refs->end(); | 382 | 17 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25SynthesizeAccessorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30IsABICompatibleOverrideRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23IsGetterMutatingRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 129 | end() { | 380 | 129 | auto *refs = getRefs<Request>(); | 381 | 129 | return refs->end(); | 382 | 129 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23IsSetterMutatingRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 91 | end() { | 380 | 91 | auto *refs = getRefs<Request>(); | 381 | 91 | return refs->end(); | 382 | 91 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26OpaqueReadOwnershipRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 35 | end() { | 380 | 35 | auto *refs = getRefs<Request>(); | 381 | 35 | return refs->end(); | 382 | 35 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22OverriddenDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 4.20k | end() { | 380 | 4.20k | auto *refs = getRefs<Request>(); | 381 | 4.20k | return refs->end(); | 382 | 4.20k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23OpaqueResultTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_13IsObjCRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 6.38k | end() { | 380 | 6.38k | auto *refs = getRefs<Request>(); | 381 | 6.38k | return refs->end(); | 382 | 6.38k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_14IsFinalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 73 | end() { | 380 | 73 | auto *refs = getRefs<Request>(); | 381 | 73 | return refs->end(); | 382 | 73 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_17IsMoveOnlyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 752 | end() { | 380 | 752 | auto *refs = getRefs<Request>(); | 381 | 752 | return refs->end(); | 382 | 752 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_16IsDynamicRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 44 | end() { | 380 | 44 | auto *refs = getRefs<Request>(); | 381 | 44 | return refs->end(); | 382 | 44 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30DynamicallyReplacedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 25 | end() { | 380 | 25 | auto *refs = getRefs<Request>(); | 381 | 25 | return refs->end(); | 382 | 25 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_36IsImplicitlyUnwrappedOptionalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 4.40k | end() { | 380 | 4.40k | auto *refs = getRefs<Request>(); | 381 | 4.40k | return refs->end(); | 382 | 4.40k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20InterfaceTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 31.2k | end() { | 380 | 31.2k | auto *refs = getRefs<Request>(); | 381 | 31.2k | return refs->end(); | 382 | 31.2k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18AccessLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 8.25k | end() { | 380 | 8.25k | auto *refs = getRefs<Request>(); | 381 | 8.25k | return refs->end(); | 382 | 8.25k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23StoredPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 304 | end() { | 380 | 304 | auto *refs = getRefs<Request>(); | 381 | 304 | return refs->end(); | 382 | 304 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_29InitAccessorPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 12 | end() { | 380 | 12 | auto *refs = getRefs<Request>(); | 381 | 12 | return refs->end(); | 382 | 12 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31MemberwiseInitPropertiesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 7 | end() { | 380 | 7 | auto *refs = getRefs<Request>(); | 381 | 7 | return refs->end(); | 382 | 7 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_40StoredPropertiesAndMissingMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30PropertyWrapperTypeInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_14IsActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 625 | end() { | 380 | 625 | auto *refs = getRefs<Request>(); | 381 | 625 | return refs->end(); | 382 | 625 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25IsDistributedActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 720 | end() { | 380 | 720 | auto *refs = getRefs<Request>(); | 381 | 720 | return refs->end(); | 382 | 720 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21UnderlyingTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 126 | end() { | 380 | 126 | auto *refs = getRefs<Request>(); | 381 | 126 | return refs->end(); | 382 | 126 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21StructuralTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28DefaultDefinitionTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18EnumRawTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24HasMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 12 | end() { | 380 | 12 | auto *refs = getRefs<Request>(); | 381 | 12 | return refs->end(); | 382 | 12 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31SynthesizeMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 7 | end() { | 380 | 7 | auto *refs = getRefs<Request>(); | 381 | 7 | return refs->end(); | 382 | 7 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_37ResolveEffectiveMemberwiseInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 23 | end() { | 380 | 23 | auto *refs = getRefs<Request>(); | 381 | 23 | return refs->end(); | 382 | 23 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21HasDefaultInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28SynthesizeDefaultInitRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26GlobalActorInstanceRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20GetDestructorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 5 | end() { | 380 | 5 | auto *refs = getRefs<Request>(); | 381 | 5 | return refs->end(); | 382 | 5 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21IsDefaultActorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_39HasMissingDesignatedInitializersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_37InheritsSuperclassInitializersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25ClassAncestryFlagsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 6 | end() { | 380 | 6 | auto *refs = getRefs<Request>(); | 381 | 6 | return refs->end(); | 382 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26CustomRefCountingOperationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26HasCircularRawValueRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25InheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 972 | end() { | 380 | 972 | auto *refs = getRefs<Request>(); | 381 | 972 | return refs->end(); | 382 | 972 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27ProtocolRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 63 | end() { | 380 | 63 | auto *refs = getRefs<Request>(); | 381 | 63 | return refs->end(); | 382 | 63 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21SuperclassTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 3 | end() { | 380 | 3 | auto *refs = getRefs<Request>(); | 381 | 3 | return refs->end(); | 382 | 3 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21SuperclassDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28ProtocolRequiresClassRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 30 | end() { | 380 | 30 | auto *refs = getRefs<Request>(); | 381 | 30 | return refs->end(); | 382 | 30 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_32ExistentialConformsToSelfRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 6 | end() { | 380 | 6 | auto *refs = getRefs<Request>(); | 381 | 6 | return refs->end(); | 382 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_42HasSelfOrAssociatedTypeRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_29PrimaryAssociatedTypesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_29StructuralRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 4 | end() { | 380 | 4 | auto *refs = getRefs<Request>(); | 381 | 4 | return refs->end(); | 382 | 4 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28TypeAliasRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27ProtocolDependenciesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 727 | end() { | 380 | 727 | auto *refs = getRefs<Request>(); | 381 | 727 | return refs->end(); | 382 | 727 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27RequirementSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 1.11k | end() { | 380 | 1.11k | auto *refs = getRefs<Request>(); | 381 | 1.11k | return refs->end(); | 382 | 1.11k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_36HasCircularInheritedProtocolsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_17HasStorageRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 353 | end() { | 380 | 353 | auto *refs = getRefs<Request>(); | 381 | 353 | return refs->end(); | 382 | 353 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22StorageImplInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 632 | end() { | 380 | 632 | auto *refs = getRefs<Request>(); | 381 | 632 | return refs->end(); | 382 | 632 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24SetterAccessLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 24 | end() { | 380 | 24 | auto *refs = getRefs<Request>(); | 381 | 24 | return refs->end(); | 382 | 24 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22HasInitAccessorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 177 | end() { | 380 | 177 | auto *refs = getRefs<Request>(); | 381 | 177 | return refs->end(); | 382 | 177 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27DefaultInitializerIsolationEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20NamingPatternRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 11 | end() { | 380 | 11 | auto *refs = getRefs<Request>(); | 381 | 11 | return refs->end(); | 382 | 11 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21ParamSpecifierRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 1.69k | end() { | 380 | 1.69k | auto *refs = getRefs<Request>(); | 381 | 1.69k | return refs->end(); | 382 | 1.69k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31AttachedPropertyWrappersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 1.48k | end() { | 380 | 1.48k | auto *refs = getRefs<Request>(); | 381 | 1.48k | return refs->end(); | 382 | 1.48k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24CustomAttrNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_34AttachedPropertyWrapperTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_41PropertyWrapperBackingPropertyTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_40PropertyWrapperAuxiliaryVariablesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_37PropertyWrapperInitializerInfoRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_32PropertyWrapperMutabilityRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 25 | end() { | 380 | 25 | auto *refs = getRefs<Request>(); | 381 | 25 | return refs->end(); | 382 | 25 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26LazyStoragePropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_33DefaultArgumentInitContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26DefaultArgumentExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26DefaultArgumentTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24ResultBuilderTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 11 | end() { | 380 | 11 | auto *refs = getRefs<Request>(); | 381 | 11 | return refs->end(); | 382 | 11 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28AttachedResultBuilderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 27 | end() { | 380 | 27 | auto *refs = getRefs<Request>(); | 381 | 27 | return refs->end(); | 382 | 27 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_17ResultTypeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 900 | end() { | 380 | 900 | auto *refs = getRefs<Request>(); | 381 | 900 | return refs->end(); | 382 | 900 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18RenamedDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_32ParseAbstractFunctionBodyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 1.53k | end() { | 380 | 1.53k | auto *refs = getRefs<Request>(); | 381 | 1.53k | return refs->end(); | 382 | 1.53k | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28TypeCheckFunctionBodyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 87 | end() { | 380 | 87 | auto *refs = getRefs<Request>(); | 381 | 87 | return refs->end(); | 382 | 87 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28IsFunctionBodySkippedRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 180 | end() { | 380 | 180 | auto *refs = getRefs<Request>(); | 381 | 180 | return refs->end(); | 382 | 180 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26NeedsNewVTableEntryRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 26 | end() { | 380 | 26 | auto *refs = getRefs<Request>(); | 381 | 26 | return refs->end(); | 382 | 26 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23FunctionOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_15IsStaticRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 4.37k | end() { | 380 | 4.37k | auto *refs = getRefs<Request>(); | 381 | 4.37k | return refs->end(); | 382 | 4.37k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_19SimpleDidSetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21SelfAccessKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 1.89k | end() { | 380 | 1.89k | auto *refs = getRefs<Request>(); | 381 | 1.89k | return refs->end(); | 382 | 1.89k | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20EnumRawValuesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_15InitKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 6 | end() { | 380 | 6 | auto *refs = getRefs<Request>(); | 381 | 6 | return refs->end(); | 382 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_19BodyInitKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30OperatorPrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 6 | end() { | 380 | 6 | auto *refs = getRefs<Request>(); | 381 | 6 | return refs->end(); | 382 | 6 | } |
Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21ActorIsolationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 785 | end() { | 380 | 785 | auto *refs = getRefs<Request>(); | 381 | 785 | return refs->end(); | 382 | 785 | } |
Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31ExpandMacroExpansionExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24ResolveMacroConformancesEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Decl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22MacroDefinitionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv DeclContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26FragileFunctionKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 112 | end() { | 380 | 112 | auto *refs = getRefs<Request>(); | 381 | 112 | return refs->end(); | 382 | 112 | } |
DeclContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_19ParseMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 320 | end() { | 380 | 320 | auto *refs = getRefs<Request>(); | 381 | 320 | return refs->end(); | 382 | 320 | } |
DeclContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_17ABIMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 6 | end() { | 380 | 6 | auto *refs = getRefs<Request>(); | 381 | 6 | return refs->end(); | 382 | 6 | } |
Unexecuted instantiation: DeclContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_17AllMembersRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_48GetDistributedActorArgumentDecodingMethodRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_43GetDistributedActorInvocationDecoderRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26GetDistributedThunkRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_40GetDistributedActorSystemPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DistributedDecl.cpp:_ZN5swift9evaluator17RequestReferences3endINS_36GetDistributedActorIDPropertyRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: DocComment.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27SemanticBriefCommentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator17RequestReferences3endINS_36PolymorphicEffectRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Effects.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28PolymorphicEffectKindRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 32 | end() { | 380 | 32 | auto *refs = getRefs<Request>(); | 381 | 32 | return refs->end(); | 382 | 32 | } |
Unexecuted instantiation: Effects.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27ConformanceHasEffectRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31CallerSideDefaultArgExprRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26LocalDiscriminatorsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Expr.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21ClosureEffectsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv GenericSignature.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31AbstractGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 18 | end() { | 380 | 18 | auto *refs = getRefs<Request>(); | 381 | 18 | return refs->end(); | 382 | 18 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22IsNonUserModuleRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28ModuleImplicitImportsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25PrimarySourceFilesRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26MangleLocalTypeDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 2.68k | end() { | 380 | 2.68k | auto *refs = getRefs<Request>(); | 381 | 2.68k | return refs->end(); | 382 | 2.68k | } |
Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26GetImplicitSendableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 4 | end() { | 380 | 4 | auto *refs = getRefs<Request>(); | 381 | 4 | return refs->end(); | 382 | 4 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_41GetDistributedActorImplicitCodableRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22ParseSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 41 | end() { | 380 | 41 | auto *refs = getRefs<Request>(); | 381 | 41 | return refs->end(); | 382 | 41 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_29HasImportsMatchingFlagRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_16SPIGroupsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 1.43k | end() { | 380 | 1.43k | auto *refs = getRefs<Request>(); | 381 | 1.43k | return refs->end(); | 382 | 1.43k | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25ModuleLibraryLevelRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25ParseTopLevelDeclsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 32 | end() { | 380 | 32 | auto *refs = getRefs<Request>(); | 381 | 32 | return refs->end(); | 382 | 32 | } |
Unexecuted instantiation: Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_25ExportedSourceFileRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Module.cpp:_ZN5swift9evaluator17RequestReferences3endINS_22GetSourceFileAsyncNodeEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 2 | end() { | 380 | 2 | auto *refs = getRefs<Request>(); | 381 | 2 | return refs->end(); | 382 | 2 | } |
NameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_35ExpandSynthesizedMemberMacroRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 22 | end() { | 380 | 22 | auto *refs = getRefs<Request>(); | 381 | 22 | return refs->end(); | 382 | 22 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21ExpandExtensionMacrosEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv NameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_40PotentialMacroExpansionsInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 68 | end() { | 380 | 68 | auto *refs = getRefs<Request>(); | 381 | 68 | return refs->end(); | 382 | 68 | } |
NameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21SuperclassDeclRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 438 | end() { | 380 | 438 | auto *refs = getRefs<Request>(); | 381 | 438 | return refs->end(); | 382 | 438 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30IsCallAsFunctionNominalRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv NameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_38HasDynamicMemberLookupAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 8 | end() { | 380 | 8 | auto *refs = getRefs<Request>(); | 381 | 8 | return refs->end(); | 382 | 8 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_34HasDynamicCallableAttributeRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_26LookupInfixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 2 | end() { | 380 | 2 | auto *refs = getRefs<Request>(); | 381 | 2 | return refs->end(); | 382 | 2 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_27LookupPrefixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28LookupPostfixOperatorRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv OperatorNameLookup.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28LookupPrecedenceGroupRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 2 | end() { | 380 | 2 | auto *refs = getRefs<Request>(); | 381 | 2 | return refs->end(); | 382 | 2 | } |
Unexecuted instantiation: Pattern.cpp:_ZN5swift9evaluator17RequestReferences3endINS_23ExprPatternMatchRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences3endINS_30ConditionalRequirementsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 271 | end() { | 380 | 271 | auto *refs = getRefs<Request>(); | 381 | 271 | return refs->end(); | 382 | 271 | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18TypeWitnessRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences3endINS_28AssociatedConformanceRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences3endINS_19ValueWitnessRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 10 | end() { | 380 | 10 | auto *refs = getRefs<Request>(); | 381 | 10 | return refs->end(); | 382 | 10 | } |
ProtocolConformance.cpp:_ZN5swift9evaluator17RequestReferences3endINS_37LookupAllConformancesInContextRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 117 | end() { | 380 | 117 | auto *refs = getRefs<Request>(); | 381 | 117 | return refs->end(); | 382 | 117 | } |
Unexecuted instantiation: RawComment.cpp:_ZN5swift9evaluator17RequestReferences3endINS_17RawCommentRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN5swift9evaluator17RequestReferences3endINS_31AbstractGenericSignatureRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator17RequestReferences3endINS_24IsSingleValueStmtRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18BreakTargetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Unexecuted instantiation: Stmt.cpp:_ZN5swift9evaluator17RequestReferences3endINS_21ContinueTargetRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv TypeCheckRequests.cpp:_ZN5swift9evaluator17RequestReferences3endINS_18RequirementRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 2 | end() { | 380 | 2 | auto *refs = getRefs<Request>(); | 381 | 2 | return refs->end(); | 382 | 2 | } |
TypeRefinementContext.cpp:_ZN5swift9evaluator17RequestReferences3endINS_40ExpandChildTypeRefinementContextsRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv Line | Count | Source | 379 | 8 | end() { | 380 | 8 | auto *refs = getRefs<Request>(); | 381 | 8 | return refs->end(); | 382 | 8 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN5swift9evaluator17RequestReferences3endINS_20USRGenerationRequestEEEN4llvm8DenseMapINS0_12_GLOBAL__N_110RequestKeyIT_vEENSt3__16vectorINS0_19DependencyCollector9ReferenceENSA_9allocatorISD_EEEENS4_12DenseMapInfoIS9_vEENS4_6detail12DenseMapPairIS9_SG_EEE14const_iteratorEv |
383 | | |
384 | | template <typename Request> |
385 | 990 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { |
386 | 990 | auto *refs = getRefs<Request>(); |
387 | 990 | refs->insert({RequestKey<Request>(std::move(req)), |
388 | 990 | std::move(val)}); |
389 | 990 | } Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18OptimizedIRRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_20USRGenerationRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24IDEInspectionFileRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24ConstantValueInfoRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26CustomRefCountingOperationEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22SymbolSourceMapRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_12IRGenRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 1 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 1 | auto *refs = getRefs<Request>(); | 387 | 1 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 1 | std::move(val)}); | 389 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_17LoweredSILRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_20PublicSymbolsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18GenerateTBDRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_13APIGenRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_18ASTLoweringRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 5 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 5 | auto *refs = getRefs<Request>(); | 387 | 5 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 5 | std::move(val)}); | 389 | 5 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21ParseSILModuleRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28TangentStoredPropertyRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_25ExecuteSILPipelineRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_46RootAndResultTypeOfKeypathDynamicMemberRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26ResolveProtocolNameRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28ProvideDefaultImplForRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_29CollectOverriddenDeclsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_23IsDeclApplicableRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24TypeRelationCheckRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_37RootTypeOfKeypathDynamicMemberRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28PreCheckResultBuilderRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_32CompareDeclSpecializationRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_29EnumElementExprPatternRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_25IsDeclRefinementOfRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 14 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 14 | auto *refs = getRefs<Request>(); | 387 | 14 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 14 | std::move(val)}); | 389 | 14 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_35HasUserDefinedDesignatedInitRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 17 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 17 | auto *refs = getRefs<Request>(); | 387 | 17 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 17 | std::move(val)}); | 389 | 17 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_44AreAllStoredPropertiesDefaultInitableRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31ClosureHasExplicitResultRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_35DistributedModuleIsAvailableRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31CheckDistributedFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_30ValidatePrecedenceGroupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 3 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 3 | auto *refs = getRefs<Request>(); | 387 | 3 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 3 | std::move(val)}); | 389 | 3 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_29SynthesizeMainFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_34TypeCheckObjCImplementationRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_25CheckRedeclarationRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 93 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 93 | auto *refs = getRefs<Request>(); | 387 | 93 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 93 | std::move(val)}); | 389 | 93 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22ApplyAccessNoteRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_27DirectOperatorLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_34DirectPrecedenceGroupLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_18DefaultTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 2 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 2 | auto *refs = getRefs<Request>(); | 387 | 2 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 2 | std::move(val)}); | 389 | 2 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_30ExternalMacroDefinitionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_25CompilerPluginLoadRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_18PatternTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 23 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 23 | auto *refs = getRefs<Request>(); | 387 | 23 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 23 | std::move(val)}); | 389 | 23 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_20InheritedTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 30 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 30 | auto *refs = getRefs<Request>(); | 387 | 30 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 30 | std::move(val)}); | 389 | 30 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24CustomAttrNominalRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21CustomAttrTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_25PreCheckReturnStmtRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_27PreCheckFunctionBodyRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_32PropertyWrapperLValuenessRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_20ExpandAccessorMacrosEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18ResolveTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_26TypeCheckSourceFileRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 6 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 6 | auto *refs = getRefs<Request>(); | 387 | 6 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 6 | std::move(val)}); | 389 | 6 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_49CheckInconsistentImplementationOnlyImportsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_38CheckInconsistentSPIOnlyImportsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_36CheckInconsistentAccessLevelOnImportEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_41CheckInconsistentWeakLinkedImportsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_31InferredGenericSignatureRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 43 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 43 | auto *refs = getRefs<Request>(); | 387 | 43 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 43 | std::move(val)}); | 389 | 43 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28TypeCheckASTNodeAtLocRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_37ObjCInterfaceAndImplementationRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_23ClangRecordMemberLookupEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26ClangCategoryLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18CxxRecordSemanticsEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18IsSafeUseOfCxxDeclEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_20CxxRecordAsSwiftTypeEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_30IDEInspectionSecondPassRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31TypeDeclsFromWhereClauseRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22HasIsolatedSelfRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24ClangDirectLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24ResolveMacroConformancesEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_30TypeEraserHasViableInitRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28ResolveTypeEraserTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31ResolveRawLayoutLikeTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31SpecializeAttrTargetDeclRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_36SerializeAttrGenericSignatureRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_39DifferentiableAttributeTypeCheckRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 8 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 8 | auto *refs = getRefs<Request>(); | 387 | 8 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 8 | std::move(val)}); | 389 | 8 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_33DerivativeAttrOriginalDeclRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 2 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 2 | auto *refs = getRefs<Request>(); | 387 | 2 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 2 | std::move(val)}); | 389 | 2 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_29ImplementsAttrProtocolRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_38InitAccessorReferencedVariablesRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_33SemanticAvailableRangeAttrRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_30SemanticUnavailableAttrRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_27ExpandMemberAttributeMacrosEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22ExpandPeerMacroRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31ExpandMacroExpansionDeclRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_19ResolveMacroRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_27GlobalActorAttributeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_17ThrownTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28IsAccessorTransparentRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_23GenericParamListRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_23GenericSignatureRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 28 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 28 | auto *refs = getRefs<Request>(); | 387 | 28 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 28 | std::move(val)}); | 389 | 28 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_25ScopedImportLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_22ExtendedNominalRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 6 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 6 | auto *refs = getRefs<Request>(); | 387 | 6 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 6 | std::move(val)}); | 389 | 6 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31DefaultAndMaxAccessLevelRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_19ExtendedTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 6 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 6 | auto *refs = getRefs<Request>(); | 387 | 6 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 6 | std::move(val)}); | 389 | 6 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_26PatternBindingEntryRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 30 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 30 | auto *refs = getRefs<Request>(); | 387 | 30 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 30 | std::move(val)}); | 389 | 30 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_30RequiresOpaqueAccessorsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_36RequiresOpaqueModifyCoroutineRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_25SynthesizeAccessorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 14 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 14 | auto *refs = getRefs<Request>(); | 387 | 14 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 14 | std::move(val)}); | 389 | 14 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_30IsABICompatibleOverrideRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_23IsGetterMutatingRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_23IsSetterMutatingRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_26OpaqueReadOwnershipRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 14 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 14 | auto *refs = getRefs<Request>(); | 387 | 14 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 14 | std::move(val)}); | 389 | 14 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26LocalDiscriminatorsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_22OverriddenDeclsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 2 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 2 | auto *refs = getRefs<Request>(); | 387 | 2 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 2 | std::move(val)}); | 389 | 2 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_23OpaqueResultTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_13IsObjCRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_14IsFinalRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_17IsMoveOnlyRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_16IsDynamicRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_30DynamicallyReplacedDeclRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_36IsImplicitlyUnwrappedOptionalRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_20InterfaceTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 155 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 155 | auto *refs = getRefs<Request>(); | 387 | 155 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 155 | std::move(val)}); | 389 | 155 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18AccessLevelRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_23StoredPropertiesRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_29InitAccessorPropertiesRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31MemberwiseInitPropertiesRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_40StoredPropertiesAndMissingMembersRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_30PropertyWrapperTypeInfoRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_14IsActorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 9 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 9 | auto *refs = getRefs<Request>(); | 387 | 9 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 9 | std::move(val)}); | 389 | 9 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_25IsDistributedActorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 9 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 9 | auto *refs = getRefs<Request>(); | 387 | 9 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 9 | std::move(val)}); | 389 | 9 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21UnderlyingTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21StructuralTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28DefaultDefinitionTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18EnumRawTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_24HasMemberwiseInitRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 15 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 15 | auto *refs = getRefs<Request>(); | 387 | 15 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 15 | std::move(val)}); | 389 | 15 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_31SynthesizeMemberwiseInitRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 7 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 7 | auto *refs = getRefs<Request>(); | 387 | 7 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 7 | std::move(val)}); | 389 | 7 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_37ResolveEffectiveMemberwiseInitRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 12 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 12 | auto *refs = getRefs<Request>(); | 387 | 12 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 12 | std::move(val)}); | 389 | 12 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_21HasDefaultInitRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 17 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 17 | auto *refs = getRefs<Request>(); | 387 | 17 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 17 | std::move(val)}); | 389 | 17 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28SynthesizeDefaultInitRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26GlobalActorInstanceRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_20GetDestructorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21IsDefaultActorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_39HasMissingDesignatedInitializersRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_37InheritsSuperclassInitializersRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_25ClassAncestryFlagsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26HasCircularRawValueRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_25InheritedProtocolsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 2 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 2 | auto *refs = getRefs<Request>(); | 387 | 2 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 2 | std::move(val)}); | 389 | 2 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_27ProtocolRequirementsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 2 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 2 | auto *refs = getRefs<Request>(); | 387 | 2 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 2 | std::move(val)}); | 389 | 2 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21SuperclassTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_28ProtocolRequiresClassRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 2 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 2 | auto *refs = getRefs<Request>(); | 387 | 2 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 2 | std::move(val)}); | 389 | 2 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_32ExistentialConformsToSelfRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_42HasSelfOrAssociatedTypeRequirementsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_29PrimaryAssociatedTypesRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_29StructuralRequirementsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 2 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 2 | auto *refs = getRefs<Request>(); | 387 | 2 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 2 | std::move(val)}); | 389 | 2 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_28TypeAliasRequirementsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 2 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 2 | auto *refs = getRefs<Request>(); | 387 | 2 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 2 | std::move(val)}); | 389 | 2 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_27ProtocolDependenciesRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 2 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 2 | auto *refs = getRefs<Request>(); | 387 | 2 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 2 | std::move(val)}); | 389 | 2 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_27RequirementSignatureRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 2 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 2 | auto *refs = getRefs<Request>(); | 387 | 2 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 2 | std::move(val)}); | 389 | 2 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_36HasCircularInheritedProtocolsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_17HasStorageRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22StorageImplInfoRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24SetterAccessLevelRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22HasInitAccessorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_27DefaultInitializerIsolationEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 33 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 33 | auto *refs = getRefs<Request>(); | 387 | 33 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 33 | std::move(val)}); | 389 | 33 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_20NamingPatternRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 19 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 19 | auto *refs = getRefs<Request>(); | 387 | 19 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 19 | std::move(val)}); | 389 | 19 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21ParamSpecifierRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31AttachedPropertyWrappersRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_34AttachedPropertyWrapperTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_41PropertyWrapperBackingPropertyTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_40PropertyWrapperAuxiliaryVariablesRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_37PropertyWrapperInitializerInfoRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_32PropertyWrapperMutabilityRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26LazyStoragePropertyRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_33DefaultArgumentInitContextRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26DefaultArgumentExprRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26DefaultArgumentTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24ResultBuilderTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28AttachedResultBuilderRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_17ResultTypeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 25 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 25 | auto *refs = getRefs<Request>(); | 387 | 25 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 25 | std::move(val)}); | 389 | 25 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18RenamedDeclRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_32ParseAbstractFunctionBodyRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 45 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 45 | auto *refs = getRefs<Request>(); | 387 | 45 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 45 | std::move(val)}); | 389 | 45 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_28TypeCheckFunctionBodyRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 58 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 58 | auto *refs = getRefs<Request>(); | 387 | 58 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 58 | std::move(val)}); | 389 | 58 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28IsFunctionBodySkippedRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26NeedsNewVTableEntryRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_23FunctionOperatorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_15IsStaticRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_19SimpleDidSetRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21SelfAccessKindRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_20EnumRawValuesRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_15InitKindRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_19BodyInitKindRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_30OperatorPrecedenceGroupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_21ActorIsolationRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 147 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 147 | auto *refs = getRefs<Request>(); | 387 | 147 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 147 | std::move(val)}); | 389 | 147 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31ExpandMacroExpansionExprRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22MacroDefinitionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28ResolveImplicitMemberRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26FragileFunctionKindRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_19ParseMembersRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_17ABIMembersRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 4 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 4 | auto *refs = getRefs<Request>(); | 387 | 4 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 4 | std::move(val)}); | 389 | 4 | } |
_ZN5swift9evaluator17RequestReferences6insertINS_17AllMembersRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 2 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 2 | auto *refs = getRefs<Request>(); | 387 | 2 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 2 | std::move(val)}); | 389 | 2 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_48GetDistributedActorArgumentDecodingMethodRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_43GetDistributedActorInvocationDecoderRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_49GetDistributedRemoteCallTargetInitFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_51GetDistributedRemoteCallArgumentInitFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_50GetDistributedActorSystemRemoteCallFunctionRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26GetDistributedThunkRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_40GetDistributedActorSystemPropertyRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_36GetDistributedActorIDPropertyRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_27SemanticBriefCommentRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_36PolymorphicEffectRequirementsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28PolymorphicEffectKindRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_27ConformanceHasEffectRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31CallerSideDefaultArgExprRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21ClosureEffectsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_31AbstractGenericSignatureRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 1 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 1 | auto *refs = getRefs<Request>(); | 387 | 1 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 1 | std::move(val)}); | 389 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22IsNonUserModuleRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28ModuleImplicitImportsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_25PrimarySourceFilesRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_26MangleLocalTypeDeclRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21ExpandExtensionMacrosEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_26GetImplicitSendableRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 10 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 10 | auto *refs = getRefs<Request>(); | 387 | 10 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 10 | std::move(val)}); | 389 | 10 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_41GetDistributedActorImplicitCodableRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22ParseSourceFileRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_29HasImportsMatchingFlagRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_16SPIGroupsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_25ModuleLibraryLevelRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_25ParseTopLevelDeclsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_25ExportedSourceFileRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22GetSourceFileAsyncNodeEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_32LookupConformanceInModuleRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21LookupInModuleRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_35ExpandSynthesizedMemberMacroRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_40PotentialMacroExpansionsInContextRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21SuperclassDeclRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_30IsCallAsFunctionNominalRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_38HasDynamicMemberLookupAttributeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 4 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 4 | auto *refs = getRefs<Request>(); | 387 | 4 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 4 | std::move(val)}); | 389 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_34HasDynamicCallableAttributeRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_32SelfBoundsFromWhereClauseRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_37SelfBoundsFromGenericSignatureRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24UnqualifiedLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_19DirectLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24CXXNamespaceMemberLookupEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22AnyObjectLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_22QualifiedLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28ModuleQualifiedLookupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_36UnderlyingTypeDeclsReferencedRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_31InheritedDeclsReferencedRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_26LookupInfixOperatorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 4 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 4 | auto *refs = getRefs<Request>(); | 387 | 4 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 4 | std::move(val)}); | 389 | 4 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_27LookupPrefixOperatorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28LookupPostfixOperatorRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_28LookupPrecedenceGroupRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 1 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 1 | auto *refs = getRefs<Request>(); | 387 | 1 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 1 | std::move(val)}); | 389 | 1 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_23ExprPatternMatchRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_30ConditionalRequirementsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 5 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 5 | auto *refs = getRefs<Request>(); | 387 | 5 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 5 | std::move(val)}); | 389 | 5 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18TypeWitnessRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_28AssociatedConformanceRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_19ValueWitnessRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_37LookupAllConformancesInContextRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 9 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 9 | auto *refs = getRefs<Request>(); | 387 | 9 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 9 | std::move(val)}); | 389 | 9 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_17RawCommentRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_24IsSingleValueStmtRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_18BreakTargetRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_21ContinueTargetRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE _ZN5swift9evaluator17RequestReferences6insertINS_18RequirementRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE Line | Count | Source | 385 | 38 | void insert(Request req, std::vector<DependencyCollector::Reference> val) { | 386 | 38 | auto *refs = getRefs<Request>(); | 387 | 38 | refs->insert({RequestKey<Request>(std::move(req)), | 388 | 38 | std::move(val)}); | 389 | 38 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences6insertINS_40ExpandChildTypeRefinementContextsRequestEEEvT_NSt3__16vectorINS0_19DependencyCollector9ReferenceENS5_9allocatorIS8_EEEE |
390 | | |
391 | | template <typename Request> |
392 | 27 | void erase(Request req) { |
393 | 27 | auto *refs = getRefs<Request>(); |
394 | 27 | refs->erase(RequestKey<Request>(std::move(req))); |
395 | 27 | } Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences5eraseINS_26LocalDiscriminatorsRequestEEEvT_ _ZN5swift9evaluator17RequestReferences5eraseINS_19BodyInitKindRequestEEEvT_ Line | Count | Source | 392 | 27 | void erase(Request req) { | 393 | 27 | auto *refs = getRefs<Request>(); | 394 | 27 | refs->erase(RequestKey<Request>(std::move(req))); | 395 | 27 | } |
Unexecuted instantiation: _ZN5swift9evaluator17RequestReferences5eraseINS_25ParseTopLevelDeclsRequestEEEvT_ |
396 | | |
397 | 0 | void clear() { |
398 | 0 | #define SWIFT_TYPEID_ZONE(Name, Id) Name##ZoneRefs.clear(); |
399 | 0 | #include "swift/Basic/TypeIDZones.def" |
400 | 0 | #undef SWIFT_TYPEID_ZONE |
401 | 0 | } |
402 | | }; |
403 | | |
404 | | } // end namespace evaluator |
405 | | |
406 | | } // end namespace swift |
407 | | |
408 | | namespace llvm { |
409 | | |
410 | | template <typename Request, typename Info> |
411 | | struct DenseMapInfo<swift::evaluator::RequestKey<Request, Info>> { |
412 | | using RequestKey = swift::evaluator::RequestKey<Request, Info>; |
413 | 207k | static inline RequestKey getEmptyKey() { |
414 | 207k | return RequestKey::getEmpty(); |
415 | 207k | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18OptimizedIRRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Frontend.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IDEInspectionFileRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ConstExtract.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ConstantValueInfoRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: GenClass.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE11getEmptyKeyEv Unexecuted instantiation: GenDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE11getEmptyKeyEv Unexecuted instantiation: GenDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE11getEmptyKeyEv Unexecuted instantiation: GenEnum.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE11getEmptyKeyEv Unexecuted instantiation: GenHeap.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE11getEmptyKeyEv Unexecuted instantiation: GenMeta.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE11getEmptyKeyEv Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE11getEmptyKeyEv IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_12IRGenRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 5 | static inline RequestKey getEmptyKey() { | 414 | 5 | return RequestKey::getEmpty(); | 415 | 5 | } |
Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17LoweredSILRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20PublicSymbolsRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18GenerateTBDRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13APIGenRequestEvEEvE11getEmptyKeyEv SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 25 | static inline RequestKey getEmptyKey() { | 414 | 25 | return RequestKey::getEmpty(); | 415 | 25 | } |
Unexecuted instantiation: SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParseSILModuleRequestEvEEvE11getEmptyKeyEv Common.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 8 | static inline RequestKey getEmptyKey() { | 414 | 8 | return RequestKey::getEmpty(); | 415 | 8 | } |
Unexecuted instantiation: PassManager.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExecuteSILPipelineRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: IDERequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ResolveProtocolNameRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29CollectOverriddenDeclsRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24TypeRelationCheckRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37RootTypeOfKeypathDynamicMemberRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Serialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ParseSIL.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: BuilderTransform.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PreCheckResultBuilderRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: CSApply.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE11getEmptyKeyEv CSRanking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32CompareDeclSpecializationRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 59 | static inline RequestKey getEmptyKey() { | 414 | 59 | return RequestKey::getEmpty(); | 415 | 59 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29EnumElementExprPatternRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE11getEmptyKeyEv CSStep.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDeclRefinementOfRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 195 | static inline RequestKey getEmptyKey() { | 414 | 195 | return RequestKey::getEmpty(); | 415 | 195 | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18CxxRecordSemanticsEvEEvE11getEmptyKeyEv CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35HasUserDefinedDesignatedInitRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 152 | static inline RequestKey getEmptyKey() { | 414 | 152 | return RequestKey::getEmpty(); | 415 | 152 | } |
CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_44AreAllStoredPropertiesDefaultInitableRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 56 | static inline RequestKey getEmptyKey() { | 414 | 56 | return RequestKey::getEmpty(); | 415 | 56 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ClosureHasExplicitResultRequestEvEEvE11getEmptyKeyEv DerivedConformanceDifferentiable.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 10 | static inline RequestKey getEmptyKey() { | 414 | 10 | return RequestKey::getEmpty(); | 415 | 10 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37RootTypeOfKeypathDynamicMemberRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: MiscDiagnostics.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: PreCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasIsolatedSelfRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35DistributedModuleIsAvailableRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CheckDistributedFunctionRequestEvEEvE11getEmptyKeyEv TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ValidatePrecedenceGroupRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 51 | static inline RequestKey getEmptyKey() { | 414 | 51 | return RequestKey::getEmpty(); | 415 | 51 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE11getEmptyKeyEv TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 56 | static inline RequestKey getEmptyKey() { | 414 | 56 | return RequestKey::getEmpty(); | 415 | 56 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34TypeCheckObjCImplementationRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE11getEmptyKeyEv TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CheckRedeclarationRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 374 | static inline RequestKey getEmptyKey() { | 414 | 374 | return RequestKey::getEmpty(); | 415 | 374 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE11getEmptyKeyEv TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ApplyAccessNoteRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 2.20k | static inline RequestKey getEmptyKey() { | 414 | 2.20k | return RequestKey::getEmpty(); | 415 | 2.20k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE11getEmptyKeyEv TypeCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18DefaultTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 45 | static inline RequestKey getEmptyKey() { | 414 | 45 | return RequestKey::getEmpty(); | 415 | 45 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CompilerPluginLoadRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE11getEmptyKeyEv TypeCheckPattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18PatternTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 256 | static inline RequestKey getEmptyKey() { | 414 | 256 | return RequestKey::getEmpty(); | 415 | 256 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE11getEmptyKeyEv TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 68 | static inline RequestKey getEmptyKey() { | 414 | 68 | return RequestKey::getEmpty(); | 415 | 68 | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE11getEmptyKeyEv TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 193 | static inline RequestKey getEmptyKey() { | 414 | 193 | return RequestKey::getEmpty(); | 415 | 193 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27PreCheckFunctionBodyRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperLValuenessRequestEvEEvE11getEmptyKeyEv TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20ExpandAccessorMacrosEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 209 | static inline RequestKey getEmptyKey() { | 414 | 209 | return RequestKey::getEmpty(); | 415 | 209 | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: TypeCheckType.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ResolveTypeRequestEvEEvE11getEmptyKeyEv TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26TypeCheckSourceFileRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 33 | static inline RequestKey getEmptyKey() { | 414 | 33 | return RequestKey::getEmpty(); | 415 | 33 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49CheckInconsistentImplementationOnlyImportsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 52 | static inline RequestKey getEmptyKey() { | 414 | 52 | return RequestKey::getEmpty(); | 415 | 52 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38CheckInconsistentSPIOnlyImportsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 52 | static inline RequestKey getEmptyKey() { | 414 | 52 | return RequestKey::getEmpty(); | 415 | 52 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36CheckInconsistentAccessLevelOnImportEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 52 | static inline RequestKey getEmptyKey() { | 414 | 52 | return RequestKey::getEmpty(); | 415 | 52 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41CheckInconsistentWeakLinkedImportsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 52 | static inline RequestKey getEmptyKey() { | 414 | 52 | return RequestKey::getEmpty(); | 415 | 52 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 333 | static inline RequestKey getEmptyKey() { | 414 | 333 | return RequestKey::getEmpty(); | 415 | 333 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckASTNodeAtLocRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE11getEmptyKeyEv Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE11getEmptyKeyEv ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.68k | static inline RequestKey getEmptyKey() { | 414 | 1.68k | return RequestKey::getEmpty(); | 415 | 1.68k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ObjCInterfaceAndImplementationRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ClangDirectLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE11getEmptyKeyEv Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ClangCategoryLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE11getEmptyKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18CxxRecordSemanticsEvEEvE11getEmptyKeyEv Unexecuted instantiation: ImportName.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18IsSafeUseOfCxxDeclEvEEvE11getEmptyKeyEv Unexecuted instantiation: ImportType.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20CxxRecordAsSwiftTypeEvEEvE11getEmptyKeyEv Unexecuted instantiation: ParseDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IDEInspectionSecondPassRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ParseRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: AccessRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31TypeDeclsFromWhereClauseRequestEvEEvE11getEmptyKeyEv ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 5.21k | static inline RequestKey getEmptyKey() { | 414 | 5.21k | return RequestKey::getEmpty(); | 415 | 5.21k | } |
Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasIsolatedSelfRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ASTPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ClangDirectLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE11getEmptyKeyEv Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30TypeEraserHasViableInitRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveTypeEraserTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ResolveRawLayoutLikeTypeRequestEvEEvE11getEmptyKeyEv Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SpecializeAttrTargetDeclRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 49 | static inline RequestKey getEmptyKey() { | 414 | 49 | return RequestKey::getEmpty(); | 415 | 49 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36SerializeAttrGenericSignatureRequestEvEEvE11getEmptyKeyEv Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39DifferentiableAttributeTypeCheckRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 53 | static inline RequestKey getEmptyKey() { | 414 | 53 | return RequestKey::getEmpty(); | 415 | 53 | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DerivativeAttrOriginalDeclRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 50 | static inline RequestKey getEmptyKey() { | 414 | 50 | return RequestKey::getEmpty(); | 415 | 50 | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29ImplementsAttrProtocolRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 46 | static inline RequestKey getEmptyKey() { | 414 | 46 | return RequestKey::getEmpty(); | 415 | 46 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38InitAccessorReferencedVariablesRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33SemanticAvailableRangeAttrRequestEvEEvE11getEmptyKeyEv Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30SemanticUnavailableAttrRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 961 | static inline RequestKey getEmptyKey() { | 414 | 961 | return RequestKey::getEmpty(); | 415 | 961 | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ExpandMemberAttributeMacrosEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 27.8k | static inline RequestKey getEmptyKey() { | 414 | 27.8k | return RequestKey::getEmpty(); | 415 | 27.8k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 8.60k | static inline RequestKey getEmptyKey() { | 414 | 8.60k | return RequestKey::getEmpty(); | 415 | 8.60k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 9.49k | static inline RequestKey getEmptyKey() { | 414 | 9.49k | return RequestKey::getEmpty(); | 415 | 9.49k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ThrownTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsAccessorTransparentRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericParamListRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericSignatureRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 9.88k | static inline RequestKey getEmptyKey() { | 414 | 9.88k | return RequestKey::getEmpty(); | 415 | 9.88k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ScopedImportLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExtendedNominalRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 21 | static inline RequestKey getEmptyKey() { | 414 | 21 | return RequestKey::getEmpty(); | 415 | 21 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31DefaultAndMaxAccessLevelRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 76 | static inline RequestKey getEmptyKey() { | 414 | 76 | return RequestKey::getEmpty(); | 415 | 76 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26PatternBindingEntryRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 62 | static inline RequestKey getEmptyKey() { | 414 | 62 | return RequestKey::getEmpty(); | 415 | 62 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30RequiresOpaqueAccessorsRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36RequiresOpaqueModifyCoroutineRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25SynthesizeAccessorRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 30 | static inline RequestKey getEmptyKey() { | 414 | 30 | return RequestKey::getEmpty(); | 415 | 30 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 43 | static inline RequestKey getEmptyKey() { | 414 | 43 | return RequestKey::getEmpty(); | 415 | 43 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsGetterMutatingRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsSetterMutatingRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26OpaqueReadOwnershipRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 65 | static inline RequestKey getEmptyKey() { | 414 | 65 | return RequestKey::getEmpty(); | 415 | 65 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 97 | static inline RequestKey getEmptyKey() { | 414 | 97 | return RequestKey::getEmpty(); | 415 | 97 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13IsObjCRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsFinalRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17IsMoveOnlyRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16IsDynamicRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30DynamicallyReplacedDeclRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 4.69k | static inline RequestKey getEmptyKey() { | 414 | 4.69k | return RequestKey::getEmpty(); | 415 | 4.69k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36IsImplicitlyUnwrappedOptionalRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InterfaceTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 31.6k | static inline RequestKey getEmptyKey() { | 414 | 31.6k | return RequestKey::getEmpty(); | 415 | 31.6k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18AccessLevelRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23StoredPropertiesRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 10.4k | static inline RequestKey getEmptyKey() { | 414 | 10.4k | return RequestKey::getEmpty(); | 415 | 10.4k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29InitAccessorPropertiesRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 82 | static inline RequestKey getEmptyKey() { | 414 | 82 | return RequestKey::getEmpty(); | 415 | 82 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31MemberwiseInitPropertiesRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 82 | static inline RequestKey getEmptyKey() { | 414 | 82 | return RequestKey::getEmpty(); | 415 | 82 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40StoredPropertiesAndMissingMembersRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 26 | static inline RequestKey getEmptyKey() { | 414 | 26 | return RequestKey::getEmpty(); | 415 | 26 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30PropertyWrapperTypeInfoRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsActorRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 6.30k | static inline RequestKey getEmptyKey() { | 414 | 6.30k | return RequestKey::getEmpty(); | 415 | 6.30k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDistributedActorRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 4.24k | static inline RequestKey getEmptyKey() { | 414 | 4.24k | return RequestKey::getEmpty(); | 415 | 4.24k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21UnderlyingTypeRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21StructuralTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 914 | static inline RequestKey getEmptyKey() { | 414 | 914 | return RequestKey::getEmpty(); | 415 | 914 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28DefaultDefinitionTypeRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18EnumRawTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 569 | static inline RequestKey getEmptyKey() { | 414 | 569 | return RequestKey::getEmpty(); | 415 | 569 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24HasMemberwiseInitRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 124 | static inline RequestKey getEmptyKey() { | 414 | 124 | return RequestKey::getEmpty(); | 415 | 124 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SynthesizeMemberwiseInitRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 68 | static inline RequestKey getEmptyKey() { | 414 | 68 | return RequestKey::getEmpty(); | 415 | 68 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ResolveEffectiveMemberwiseInitRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 129 | static inline RequestKey getEmptyKey() { | 414 | 129 | return RequestKey::getEmpty(); | 415 | 129 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21HasDefaultInitRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 117 | static inline RequestKey getEmptyKey() { | 414 | 117 | return RequestKey::getEmpty(); | 415 | 117 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28SynthesizeDefaultInitRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 21 | static inline RequestKey getEmptyKey() { | 414 | 21 | return RequestKey::getEmpty(); | 415 | 21 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GlobalActorInstanceRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20GetDestructorRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21IsDefaultActorRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 25 | static inline RequestKey getEmptyKey() { | 414 | 25 | return RequestKey::getEmpty(); | 415 | 25 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39HasMissingDesignatedInitializersRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37InheritsSuperclassInitializersRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ClassAncestryFlagsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 54 | static inline RequestKey getEmptyKey() { | 414 | 54 | return RequestKey::getEmpty(); | 415 | 54 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 7 | static inline RequestKey getEmptyKey() { | 414 | 7 | return RequestKey::getEmpty(); | 415 | 7 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25InheritedProtocolsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 130 | static inline RequestKey getEmptyKey() { | 414 | 130 | return RequestKey::getEmpty(); | 415 | 130 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolRequirementsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 13 | static inline RequestKey getEmptyKey() { | 414 | 13 | return RequestKey::getEmpty(); | 415 | 13 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassTypeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProtocolRequiresClassRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 11 | static inline RequestKey getEmptyKey() { | 414 | 11 | return RequestKey::getEmpty(); | 415 | 11 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ExistentialConformsToSelfRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_42HasSelfOrAssociatedTypeRequirementsRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29PrimaryAssociatedTypesRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 8 | static inline RequestKey getEmptyKey() { | 414 | 8 | return RequestKey::getEmpty(); | 415 | 8 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29StructuralRequirementsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 32 | static inline RequestKey getEmptyKey() { | 414 | 32 | return RequestKey::getEmpty(); | 415 | 32 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeAliasRequirementsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 25 | static inline RequestKey getEmptyKey() { | 414 | 25 | return RequestKey::getEmpty(); | 415 | 25 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolDependenciesRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 3.04k | static inline RequestKey getEmptyKey() { | 414 | 3.04k | return RequestKey::getEmpty(); | 415 | 3.04k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27RequirementSignatureRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 367 | static inline RequestKey getEmptyKey() { | 414 | 367 | return RequestKey::getEmpty(); | 415 | 367 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 14 | static inline RequestKey getEmptyKey() { | 414 | 14 | return RequestKey::getEmpty(); | 415 | 14 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 2.93k | static inline RequestKey getEmptyKey() { | 414 | 2.93k | return RequestKey::getEmpty(); | 415 | 2.93k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22StorageImplInfoRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24SetterAccessLevelRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasInitAccessorRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 2.83k | static inline RequestKey getEmptyKey() { | 414 | 2.83k | return RequestKey::getEmpty(); | 415 | 2.83k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 14.2k | static inline RequestKey getEmptyKey() { | 414 | 14.2k | return RequestKey::getEmpty(); | 415 | 14.2k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20NamingPatternRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 51 | static inline RequestKey getEmptyKey() { | 414 | 51 | return RequestKey::getEmpty(); | 415 | 51 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParamSpecifierRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 17.3k | static inline RequestKey getEmptyKey() { | 414 | 17.3k | return RequestKey::getEmpty(); | 415 | 17.3k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34AttachedPropertyWrapperTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 66 | static inline RequestKey getEmptyKey() { | 414 | 66 | return RequestKey::getEmpty(); | 415 | 66 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 66 | static inline RequestKey getEmptyKey() { | 414 | 66 | return RequestKey::getEmpty(); | 415 | 66 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 138 | static inline RequestKey getEmptyKey() { | 414 | 138 | return RequestKey::getEmpty(); | 415 | 138 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 143 | static inline RequestKey getEmptyKey() { | 414 | 143 | return RequestKey::getEmpty(); | 415 | 143 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperMutabilityRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 199 | static inline RequestKey getEmptyKey() { | 414 | 199 | return RequestKey::getEmpty(); | 415 | 199 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DefaultArgumentInitContextRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentExprRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentTypeRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResultBuilderTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 378 | static inline RequestKey getEmptyKey() { | 414 | 378 | return RequestKey::getEmpty(); | 415 | 378 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AttachedResultBuilderRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 663 | static inline RequestKey getEmptyKey() { | 414 | 663 | return RequestKey::getEmpty(); | 415 | 663 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ResultTypeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 737 | static inline RequestKey getEmptyKey() { | 414 | 737 | return RequestKey::getEmpty(); | 415 | 737 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ParseAbstractFunctionBodyRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 489 | static inline RequestKey getEmptyKey() { | 414 | 489 | return RequestKey::getEmpty(); | 415 | 489 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckFunctionBodyRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 250 | static inline RequestKey getEmptyKey() { | 414 | 250 | return RequestKey::getEmpty(); | 415 | 250 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsFunctionBodySkippedRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26NeedsNewVTableEntryRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 4.93k | static inline RequestKey getEmptyKey() { | 414 | 4.93k | return RequestKey::getEmpty(); | 415 | 4.93k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15IsStaticRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19SimpleDidSetRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SelfAccessKindRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20EnumRawValuesRequestEvEEvE11getEmptyKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.12k | static inline RequestKey getEmptyKey() { | 414 | 1.12k | return RequestKey::getEmpty(); | 415 | 1.12k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19BodyInitKindRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 21 | static inline RequestKey getEmptyKey() { | 414 | 21 | return RequestKey::getEmpty(); | 415 | 21 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 219 | static inline RequestKey getEmptyKey() { | 414 | 219 | return RequestKey::getEmpty(); | 415 | 219 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ActorIsolationRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 7.79k | static inline RequestKey getEmptyKey() { | 414 | 7.79k | return RequestKey::getEmpty(); | 415 | 7.79k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE11getEmptyKeyEv DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26FragileFunctionKindRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 1.02k | static inline RequestKey getEmptyKey() { | 414 | 1.02k | return RequestKey::getEmpty(); | 415 | 1.02k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 936 | static inline RequestKey getEmptyKey() { | 414 | 936 | return RequestKey::getEmpty(); | 415 | 936 | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ABIMembersRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 186 | static inline RequestKey getEmptyKey() { | 414 | 186 | return RequestKey::getEmpty(); | 415 | 186 | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17AllMembersRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 56 | static inline RequestKey getEmptyKey() { | 414 | 56 | return RequestKey::getEmpty(); | 415 | 56 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_48GetDistributedActorArgumentDecodingMethodRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_43GetDistributedActorInvocationDecoderRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49GetDistributedRemoteCallTargetInitFunctionRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_50GetDistributedActorSystemRemoteCallFunctionRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GetDistributedThunkRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40GetDistributedActorSystemPropertyRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36GetDistributedActorIDPropertyRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: DocComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27SemanticBriefCommentRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36PolymorphicEffectRequirementsRequestEvEEvE11getEmptyKeyEv Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PolymorphicEffectKindRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 381 | static inline RequestKey getEmptyKey() { | 414 | 381 | return RequestKey::getEmpty(); | 415 | 381 | } |
Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ConformanceHasEffectRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CallerSideDefaultArgExprRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE11getEmptyKeyEv GenericSignature.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 202 | static inline RequestKey getEmptyKey() { | 414 | 202 | return RequestKey::getEmpty(); | 415 | 202 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22IsNonUserModuleRequestEvEEvE11getEmptyKeyEv Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleImplicitImportsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 59 | static inline RequestKey getEmptyKey() { | 414 | 59 | return RequestKey::getEmpty(); | 415 | 59 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PrimarySourceFilesRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 72 | static inline RequestKey getEmptyKey() { | 414 | 72 | return RequestKey::getEmpty(); | 415 | 72 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE11getEmptyKeyEv Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 4.78k | static inline RequestKey getEmptyKey() { | 414 | 4.78k | return RequestKey::getEmpty(); | 415 | 4.78k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GetImplicitSendableRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 200 | static inline RequestKey getEmptyKey() { | 414 | 200 | return RequestKey::getEmpty(); | 415 | 200 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41GetDistributedActorImplicitCodableRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29HasImportsMatchingFlagRequestEvEEvE11getEmptyKeyEv Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16SPIGroupsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 7.03k | static inline RequestKey getEmptyKey() { | 414 | 7.03k | return RequestKey::getEmpty(); | 415 | 7.03k | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ModuleLibraryLevelRequestEvEEvE11getEmptyKeyEv Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ParseTopLevelDeclsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 139 | static inline RequestKey getEmptyKey() { | 414 | 139 | return RequestKey::getEmpty(); | 415 | 139 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExportedSourceFileRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 56 | static inline RequestKey getEmptyKey() { | 414 | 56 | return RequestKey::getEmpty(); | 415 | 56 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22GetSourceFileAsyncNodeEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 20 | static inline RequestKey getEmptyKey() { | 414 | 20 | return RequestKey::getEmpty(); | 415 | 20 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32LookupConformanceInModuleRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ModuleNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21LookupInModuleRequestEvEEvE11getEmptyKeyEv NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 147 | static inline RequestKey getEmptyKey() { | 414 | 147 | return RequestKey::getEmpty(); | 415 | 147 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE11getEmptyKeyEv NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 2.98k | static inline RequestKey getEmptyKey() { | 414 | 2.98k | return RequestKey::getEmpty(); | 415 | 2.98k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsCallAsFunctionNominalRequestEvEEvE11getEmptyKeyEv NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38HasDynamicMemberLookupAttributeRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 299 | static inline RequestKey getEmptyKey() { | 414 | 299 | return RequestKey::getEmpty(); | 415 | 299 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32SelfBoundsFromWhereClauseRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37SelfBoundsFromGenericSignatureRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19DirectLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CXXNamespaceMemberLookupEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22AnyObjectLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22QualifiedLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleQualifiedLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36UnderlyingTypeDeclsReferencedRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InheritedDeclsReferencedRequestEvEEvE11getEmptyKeyEv OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LookupInfixOperatorRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 59 | static inline RequestKey getEmptyKey() { | 414 | 59 | return RequestKey::getEmpty(); | 415 | 59 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27LookupPrefixOperatorRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPostfixOperatorRequestEvEEvE11getEmptyKeyEv OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPrecedenceGroupRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 31 | static inline RequestKey getEmptyKey() { | 414 | 31 | return RequestKey::getEmpty(); | 415 | 31 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Pattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ExprPatternMatchRequestEvEEvE11getEmptyKeyEv ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ConditionalRequirementsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 979 | static inline RequestKey getEmptyKey() { | 414 | 979 | return RequestKey::getEmpty(); | 415 | 979 | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18TypeWitnessRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AssociatedConformanceRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ValueWitnessRequestEvEEvE11getEmptyKeyEv ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37LookupAllConformancesInContextRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 557 | static inline RequestKey getEmptyKey() { | 414 | 557 | return RequestKey::getEmpty(); | 415 | 557 | } |
Unexecuted instantiation: RawComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17RawCommentRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE11getEmptyKeyEv Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IsSingleValueStmtRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 154 | static inline RequestKey getEmptyKey() { | 414 | 154 | return RequestKey::getEmpty(); | 415 | 154 | } |
Unexecuted instantiation: Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18BreakTargetRequestEvEEvE11getEmptyKeyEv Unexecuted instantiation: Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ContinueTargetRequestEvEEvE11getEmptyKeyEv TypeCheckRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RequirementRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 126 | static inline RequestKey getEmptyKey() { | 414 | 126 | return RequestKey::getEmpty(); | 415 | 126 | } |
TypeRefinementContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40ExpandChildTypeRefinementContextsRequestEvEEvE11getEmptyKeyEv Line | Count | Source | 413 | 132 | static inline RequestKey getEmptyKey() { | 414 | 132 | return RequestKey::getEmpty(); | 415 | 132 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE11getEmptyKeyEv |
416 | 177k | static inline RequestKey getTombstoneKey() { |
417 | 177k | return RequestKey::getTombstone(); |
418 | 177k | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18OptimizedIRRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Frontend.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IDEInspectionFileRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ConstExtract.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ConstantValueInfoRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: GenClass.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE15getTombstoneKeyEv Unexecuted instantiation: GenDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE15getTombstoneKeyEv Unexecuted instantiation: GenDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE15getTombstoneKeyEv Unexecuted instantiation: GenEnum.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE15getTombstoneKeyEv Unexecuted instantiation: GenHeap.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE15getTombstoneKeyEv Unexecuted instantiation: GenMeta.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE15getTombstoneKeyEv IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_12IRGenRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 3 | static inline RequestKey getTombstoneKey() { | 417 | 3 | return RequestKey::getTombstone(); | 418 | 3 | } |
Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17LoweredSILRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20PublicSymbolsRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18GenerateTBDRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13APIGenRequestEvEEvE15getTombstoneKeyEv SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 15 | static inline RequestKey getTombstoneKey() { | 417 | 15 | return RequestKey::getTombstone(); | 418 | 15 | } |
Unexecuted instantiation: SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParseSILModuleRequestEvEEvE15getTombstoneKeyEv Common.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 8 | static inline RequestKey getTombstoneKey() { | 417 | 8 | return RequestKey::getTombstone(); | 418 | 8 | } |
Unexecuted instantiation: PassManager.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExecuteSILPipelineRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IDERequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ResolveProtocolNameRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29CollectOverriddenDeclsRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24TypeRelationCheckRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37RootTypeOfKeypathDynamicMemberRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Serialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ParseSIL.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: BuilderTransform.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PreCheckResultBuilderRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: CSApply.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE15getTombstoneKeyEv CSRanking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32CompareDeclSpecializationRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 42 | static inline RequestKey getTombstoneKey() { | 417 | 42 | return RequestKey::getTombstone(); | 418 | 42 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29EnumElementExprPatternRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE15getTombstoneKeyEv CSStep.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDeclRefinementOfRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 140 | static inline RequestKey getTombstoneKey() { | 417 | 140 | return RequestKey::getTombstone(); | 418 | 140 | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18CxxRecordSemanticsEvEEvE15getTombstoneKeyEv CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35HasUserDefinedDesignatedInitRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 102 | static inline RequestKey getTombstoneKey() { | 417 | 102 | return RequestKey::getTombstone(); | 418 | 102 | } |
CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_44AreAllStoredPropertiesDefaultInitableRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 34 | static inline RequestKey getTombstoneKey() { | 417 | 34 | return RequestKey::getTombstone(); | 418 | 34 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ClosureHasExplicitResultRequestEvEEvE15getTombstoneKeyEv DerivedConformanceDifferentiable.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 5 | static inline RequestKey getTombstoneKey() { | 417 | 5 | return RequestKey::getTombstone(); | 418 | 5 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37RootTypeOfKeypathDynamicMemberRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: MiscDiagnostics.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: PreCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasIsolatedSelfRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35DistributedModuleIsAvailableRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CheckDistributedFunctionRequestEvEEvE15getTombstoneKeyEv TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ValidatePrecedenceGroupRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 30 | static inline RequestKey getTombstoneKey() { | 417 | 30 | return RequestKey::getTombstone(); | 418 | 30 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE15getTombstoneKeyEv TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 36 | static inline RequestKey getTombstoneKey() { | 417 | 36 | return RequestKey::getTombstone(); | 418 | 36 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34TypeCheckObjCImplementationRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE15getTombstoneKeyEv TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CheckRedeclarationRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 274 | static inline RequestKey getTombstoneKey() { | 417 | 274 | return RequestKey::getTombstone(); | 418 | 274 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE15getTombstoneKeyEv TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ApplyAccessNoteRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.74k | static inline RequestKey getTombstoneKey() { | 417 | 1.74k | return RequestKey::getTombstone(); | 418 | 1.74k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE15getTombstoneKeyEv TypeCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18DefaultTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 42 | static inline RequestKey getTombstoneKey() { | 417 | 42 | return RequestKey::getTombstone(); | 418 | 42 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CompilerPluginLoadRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE15getTombstoneKeyEv TypeCheckPattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18PatternTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 181 | static inline RequestKey getTombstoneKey() { | 417 | 181 | return RequestKey::getTombstone(); | 418 | 181 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE15getTombstoneKeyEv TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 34 | static inline RequestKey getTombstoneKey() { | 417 | 34 | return RequestKey::getTombstone(); | 418 | 34 | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE15getTombstoneKeyEv TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 124 | static inline RequestKey getTombstoneKey() { | 417 | 124 | return RequestKey::getTombstone(); | 418 | 124 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27PreCheckFunctionBodyRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperLValuenessRequestEvEEvE15getTombstoneKeyEv TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20ExpandAccessorMacrosEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 136 | static inline RequestKey getTombstoneKey() { | 417 | 136 | return RequestKey::getTombstone(); | 418 | 136 | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: TypeCheckType.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ResolveTypeRequestEvEEvE15getTombstoneKeyEv TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26TypeCheckSourceFileRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 21 | static inline RequestKey getTombstoneKey() { | 417 | 21 | return RequestKey::getTombstone(); | 418 | 21 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49CheckInconsistentImplementationOnlyImportsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 26 | static inline RequestKey getTombstoneKey() { | 417 | 26 | return RequestKey::getTombstone(); | 418 | 26 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38CheckInconsistentSPIOnlyImportsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 26 | static inline RequestKey getTombstoneKey() { | 417 | 26 | return RequestKey::getTombstone(); | 418 | 26 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36CheckInconsistentAccessLevelOnImportEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 26 | static inline RequestKey getTombstoneKey() { | 417 | 26 | return RequestKey::getTombstone(); | 418 | 26 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41CheckInconsistentWeakLinkedImportsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 26 | static inline RequestKey getTombstoneKey() { | 417 | 26 | return RequestKey::getTombstone(); | 418 | 26 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 200 | static inline RequestKey getTombstoneKey() { | 417 | 200 | return RequestKey::getTombstone(); | 418 | 200 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckASTNodeAtLocRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE15getTombstoneKeyEv ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 1.10k | static inline RequestKey getTombstoneKey() { | 417 | 1.10k | return RequestKey::getTombstone(); | 418 | 1.10k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ObjCInterfaceAndImplementationRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ClangDirectLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ClangCategoryLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18CxxRecordSemanticsEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ImportName.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18IsSafeUseOfCxxDeclEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ImportType.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20CxxRecordAsSwiftTypeEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ParseDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IDEInspectionSecondPassRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ParseRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: AccessRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31TypeDeclsFromWhereClauseRequestEvEEvE15getTombstoneKeyEv ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 3.54k | static inline RequestKey getTombstoneKey() { | 417 | 3.54k | return RequestKey::getTombstone(); | 418 | 3.54k | } |
Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasIsolatedSelfRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ASTPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ClangDirectLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30TypeEraserHasViableInitRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveTypeEraserTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ResolveRawLayoutLikeTypeRequestEvEEvE15getTombstoneKeyEv Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SpecializeAttrTargetDeclRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 32 | static inline RequestKey getTombstoneKey() { | 417 | 32 | return RequestKey::getTombstone(); | 418 | 32 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36SerializeAttrGenericSignatureRequestEvEEvE15getTombstoneKeyEv Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39DifferentiableAttributeTypeCheckRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 40 | static inline RequestKey getTombstoneKey() { | 417 | 40 | return RequestKey::getTombstone(); | 418 | 40 | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DerivativeAttrOriginalDeclRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 37 | static inline RequestKey getTombstoneKey() { | 417 | 37 | return RequestKey::getTombstone(); | 418 | 37 | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29ImplementsAttrProtocolRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 24 | static inline RequestKey getTombstoneKey() { | 417 | 24 | return RequestKey::getTombstone(); | 418 | 24 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38InitAccessorReferencedVariablesRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33SemanticAvailableRangeAttrRequestEvEEvE15getTombstoneKeyEv Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30SemanticUnavailableAttrRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 779 | static inline RequestKey getTombstoneKey() { | 417 | 779 | return RequestKey::getTombstone(); | 418 | 779 | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ExpandMemberAttributeMacrosEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 22.2k | static inline RequestKey getTombstoneKey() { | 417 | 22.2k | return RequestKey::getTombstone(); | 418 | 22.2k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 6.75k | static inline RequestKey getTombstoneKey() { | 417 | 6.75k | return RequestKey::getTombstone(); | 418 | 6.75k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 8.30k | static inline RequestKey getTombstoneKey() { | 417 | 8.30k | return RequestKey::getTombstone(); | 418 | 8.30k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ThrownTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsAccessorTransparentRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericParamListRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericSignatureRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 9.85k | static inline RequestKey getTombstoneKey() { | 417 | 9.85k | return RequestKey::getTombstone(); | 418 | 9.85k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ScopedImportLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExtendedNominalRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 13 | static inline RequestKey getTombstoneKey() { | 417 | 13 | return RequestKey::getTombstone(); | 418 | 13 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31DefaultAndMaxAccessLevelRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 68 | static inline RequestKey getTombstoneKey() { | 417 | 68 | return RequestKey::getTombstone(); | 418 | 68 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26PatternBindingEntryRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 31 | static inline RequestKey getTombstoneKey() { | 417 | 31 | return RequestKey::getTombstone(); | 418 | 31 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30RequiresOpaqueAccessorsRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36RequiresOpaqueModifyCoroutineRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25SynthesizeAccessorRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 15 | static inline RequestKey getTombstoneKey() { | 417 | 15 | return RequestKey::getTombstone(); | 418 | 15 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 35 | static inline RequestKey getTombstoneKey() { | 417 | 35 | return RequestKey::getTombstone(); | 418 | 35 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsGetterMutatingRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsSetterMutatingRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26OpaqueReadOwnershipRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 50 | static inline RequestKey getTombstoneKey() { | 417 | 50 | return RequestKey::getTombstone(); | 418 | 50 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 93 | static inline RequestKey getTombstoneKey() { | 417 | 93 | return RequestKey::getTombstone(); | 418 | 93 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13IsObjCRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsFinalRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17IsMoveOnlyRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16IsDynamicRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30DynamicallyReplacedDeclRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 3.64k | static inline RequestKey getTombstoneKey() { | 417 | 3.64k | return RequestKey::getTombstone(); | 418 | 3.64k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36IsImplicitlyUnwrappedOptionalRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InterfaceTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 31.4k | static inline RequestKey getTombstoneKey() { | 417 | 31.4k | return RequestKey::getTombstone(); | 418 | 31.4k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18AccessLevelRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23StoredPropertiesRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 10.3k | static inline RequestKey getTombstoneKey() { | 417 | 10.3k | return RequestKey::getTombstone(); | 418 | 10.3k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29InitAccessorPropertiesRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 58 | static inline RequestKey getTombstoneKey() { | 417 | 58 | return RequestKey::getTombstone(); | 418 | 58 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31MemberwiseInitPropertiesRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 55 | static inline RequestKey getTombstoneKey() { | 417 | 55 | return RequestKey::getTombstone(); | 418 | 55 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40StoredPropertiesAndMissingMembersRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 21 | static inline RequestKey getTombstoneKey() { | 417 | 21 | return RequestKey::getTombstone(); | 418 | 21 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30PropertyWrapperTypeInfoRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsActorRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 5.97k | static inline RequestKey getTombstoneKey() { | 417 | 5.97k | return RequestKey::getTombstone(); | 418 | 5.97k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDistributedActorRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 3.86k | static inline RequestKey getTombstoneKey() { | 417 | 3.86k | return RequestKey::getTombstone(); | 418 | 3.86k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21UnderlyingTypeRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21StructuralTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 553 | static inline RequestKey getTombstoneKey() { | 417 | 553 | return RequestKey::getTombstone(); | 418 | 553 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28DefaultDefinitionTypeRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18EnumRawTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 314 | static inline RequestKey getTombstoneKey() { | 417 | 314 | return RequestKey::getTombstone(); | 418 | 314 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24HasMemberwiseInitRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 83 | static inline RequestKey getTombstoneKey() { | 417 | 83 | return RequestKey::getTombstone(); | 418 | 83 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SynthesizeMemberwiseInitRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 46 | static inline RequestKey getTombstoneKey() { | 417 | 46 | return RequestKey::getTombstone(); | 418 | 46 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ResolveEffectiveMemberwiseInitRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 98 | static inline RequestKey getTombstoneKey() { | 417 | 98 | return RequestKey::getTombstone(); | 418 | 98 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21HasDefaultInitRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 67 | static inline RequestKey getTombstoneKey() { | 417 | 67 | return RequestKey::getTombstone(); | 418 | 67 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28SynthesizeDefaultInitRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 12 | static inline RequestKey getTombstoneKey() { | 417 | 12 | return RequestKey::getTombstone(); | 418 | 12 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GlobalActorInstanceRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20GetDestructorRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21IsDefaultActorRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 23 | static inline RequestKey getTombstoneKey() { | 417 | 23 | return RequestKey::getTombstone(); | 418 | 23 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39HasMissingDesignatedInitializersRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37InheritsSuperclassInitializersRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ClassAncestryFlagsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 46 | static inline RequestKey getTombstoneKey() { | 417 | 46 | return RequestKey::getTombstone(); | 418 | 46 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 4 | static inline RequestKey getTombstoneKey() { | 417 | 4 | return RequestKey::getTombstone(); | 418 | 4 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25InheritedProtocolsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 127 | static inline RequestKey getTombstoneKey() { | 417 | 127 | return RequestKey::getTombstone(); | 418 | 127 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolRequirementsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 10 | static inline RequestKey getTombstoneKey() { | 417 | 10 | return RequestKey::getTombstone(); | 418 | 10 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassTypeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProtocolRequiresClassRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 8 | static inline RequestKey getTombstoneKey() { | 417 | 8 | return RequestKey::getTombstone(); | 418 | 8 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ExistentialConformsToSelfRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_42HasSelfOrAssociatedTypeRequirementsRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29PrimaryAssociatedTypesRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 4 | static inline RequestKey getTombstoneKey() { | 417 | 4 | return RequestKey::getTombstone(); | 418 | 4 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29StructuralRequirementsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 20 | static inline RequestKey getTombstoneKey() { | 417 | 20 | return RequestKey::getTombstone(); | 418 | 20 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeAliasRequirementsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 13 | static inline RequestKey getTombstoneKey() { | 417 | 13 | return RequestKey::getTombstone(); | 418 | 13 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolDependenciesRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 2.82k | static inline RequestKey getTombstoneKey() { | 417 | 2.82k | return RequestKey::getTombstone(); | 418 | 2.82k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27RequirementSignatureRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 364 | static inline RequestKey getTombstoneKey() { | 417 | 364 | return RequestKey::getTombstone(); | 418 | 364 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 7 | static inline RequestKey getTombstoneKey() { | 417 | 7 | return RequestKey::getTombstone(); | 418 | 7 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 2.93k | static inline RequestKey getTombstoneKey() { | 417 | 2.93k | return RequestKey::getTombstone(); | 418 | 2.93k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22StorageImplInfoRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24SetterAccessLevelRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasInitAccessorRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 2.40k | static inline RequestKey getTombstoneKey() { | 417 | 2.40k | return RequestKey::getTombstone(); | 418 | 2.40k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 9.90k | static inline RequestKey getTombstoneKey() { | 417 | 9.90k | return RequestKey::getTombstone(); | 418 | 9.90k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20NamingPatternRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 31 | static inline RequestKey getTombstoneKey() { | 417 | 31 | return RequestKey::getTombstone(); | 418 | 31 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParamSpecifierRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 14.4k | static inline RequestKey getTombstoneKey() { | 417 | 14.4k | return RequestKey::getTombstone(); | 418 | 14.4k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34AttachedPropertyWrapperTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 42 | static inline RequestKey getTombstoneKey() { | 417 | 42 | return RequestKey::getTombstone(); | 418 | 42 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 42 | static inline RequestKey getTombstoneKey() { | 417 | 42 | return RequestKey::getTombstone(); | 418 | 42 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 93 | static inline RequestKey getTombstoneKey() { | 417 | 93 | return RequestKey::getTombstone(); | 418 | 93 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 98 | static inline RequestKey getTombstoneKey() { | 417 | 98 | return RequestKey::getTombstone(); | 418 | 98 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperMutabilityRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 142 | static inline RequestKey getTombstoneKey() { | 417 | 142 | return RequestKey::getTombstone(); | 418 | 142 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DefaultArgumentInitContextRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentExprRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentTypeRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResultBuilderTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 272 | static inline RequestKey getTombstoneKey() { | 417 | 272 | return RequestKey::getTombstone(); | 418 | 272 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AttachedResultBuilderRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 472 | static inline RequestKey getTombstoneKey() { | 417 | 472 | return RequestKey::getTombstone(); | 418 | 472 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ResultTypeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 706 | static inline RequestKey getTombstoneKey() { | 417 | 706 | return RequestKey::getTombstone(); | 418 | 706 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ParseAbstractFunctionBodyRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 443 | static inline RequestKey getTombstoneKey() { | 417 | 443 | return RequestKey::getTombstone(); | 418 | 443 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckFunctionBodyRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 188 | static inline RequestKey getTombstoneKey() { | 417 | 188 | return RequestKey::getTombstone(); | 418 | 188 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsFunctionBodySkippedRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26NeedsNewVTableEntryRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 3.32k | static inline RequestKey getTombstoneKey() { | 417 | 3.32k | return RequestKey::getTombstone(); | 418 | 3.32k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15IsStaticRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19SimpleDidSetRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SelfAccessKindRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20EnumRawValuesRequestEvEEvE15getTombstoneKeyEv Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 758 | static inline RequestKey getTombstoneKey() { | 417 | 758 | return RequestKey::getTombstone(); | 418 | 758 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19BodyInitKindRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 13 | static inline RequestKey getTombstoneKey() { | 417 | 13 | return RequestKey::getTombstone(); | 418 | 13 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 116 | static inline RequestKey getTombstoneKey() { | 417 | 116 | return RequestKey::getTombstone(); | 418 | 116 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ActorIsolationRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 6.68k | static inline RequestKey getTombstoneKey() { | 417 | 6.68k | return RequestKey::getTombstone(); | 418 | 6.68k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE15getTombstoneKeyEv DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26FragileFunctionKindRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 808 | static inline RequestKey getTombstoneKey() { | 417 | 808 | return RequestKey::getTombstone(); | 418 | 808 | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 882 | static inline RequestKey getTombstoneKey() { | 417 | 882 | return RequestKey::getTombstone(); | 418 | 882 | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ABIMembersRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 128 | static inline RequestKey getTombstoneKey() { | 417 | 128 | return RequestKey::getTombstone(); | 418 | 128 | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17AllMembersRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 35 | static inline RequestKey getTombstoneKey() { | 417 | 35 | return RequestKey::getTombstone(); | 418 | 35 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_48GetDistributedActorArgumentDecodingMethodRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_43GetDistributedActorInvocationDecoderRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49GetDistributedRemoteCallTargetInitFunctionRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_50GetDistributedActorSystemRemoteCallFunctionRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GetDistributedThunkRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40GetDistributedActorSystemPropertyRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36GetDistributedActorIDPropertyRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: DocComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27SemanticBriefCommentRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36PolymorphicEffectRequirementsRequestEvEEvE15getTombstoneKeyEv Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PolymorphicEffectKindRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 300 | static inline RequestKey getTombstoneKey() { | 417 | 300 | return RequestKey::getTombstone(); | 418 | 300 | } |
Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ConformanceHasEffectRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CallerSideDefaultArgExprRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE15getTombstoneKeyEv GenericSignature.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 158 | static inline RequestKey getTombstoneKey() { | 417 | 158 | return RequestKey::getTombstone(); | 418 | 158 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22IsNonUserModuleRequestEvEEvE15getTombstoneKeyEv Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleImplicitImportsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 31 | static inline RequestKey getTombstoneKey() { | 417 | 31 | return RequestKey::getTombstone(); | 418 | 31 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PrimarySourceFilesRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 48 | static inline RequestKey getTombstoneKey() { | 417 | 48 | return RequestKey::getTombstone(); | 418 | 48 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE15getTombstoneKeyEv Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 4.68k | static inline RequestKey getTombstoneKey() { | 417 | 4.68k | return RequestKey::getTombstone(); | 418 | 4.68k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GetImplicitSendableRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 142 | static inline RequestKey getTombstoneKey() { | 417 | 142 | return RequestKey::getTombstone(); | 418 | 142 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41GetDistributedActorImplicitCodableRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29HasImportsMatchingFlagRequestEvEEvE15getTombstoneKeyEv Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16SPIGroupsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 6.04k | static inline RequestKey getTombstoneKey() { | 417 | 6.04k | return RequestKey::getTombstone(); | 418 | 6.04k | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ModuleLibraryLevelRequestEvEEvE15getTombstoneKeyEv Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ParseTopLevelDeclsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 108 | static inline RequestKey getTombstoneKey() { | 417 | 108 | return RequestKey::getTombstone(); | 418 | 108 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExportedSourceFileRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 28 | static inline RequestKey getTombstoneKey() { | 417 | 28 | return RequestKey::getTombstone(); | 418 | 28 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22GetSourceFileAsyncNodeEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 12 | static inline RequestKey getTombstoneKey() { | 417 | 12 | return RequestKey::getTombstone(); | 418 | 12 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32LookupConformanceInModuleRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ModuleNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21LookupInModuleRequestEvEEvE15getTombstoneKeyEv NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 106 | static inline RequestKey getTombstoneKey() { | 417 | 106 | return RequestKey::getTombstone(); | 418 | 106 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE15getTombstoneKeyEv NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 2.26k | static inline RequestKey getTombstoneKey() { | 417 | 2.26k | return RequestKey::getTombstone(); | 418 | 2.26k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsCallAsFunctionNominalRequestEvEEvE15getTombstoneKeyEv NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38HasDynamicMemberLookupAttributeRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 216 | static inline RequestKey getTombstoneKey() { | 417 | 216 | return RequestKey::getTombstone(); | 418 | 216 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32SelfBoundsFromWhereClauseRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37SelfBoundsFromGenericSignatureRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19DirectLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CXXNamespaceMemberLookupEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22AnyObjectLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22QualifiedLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleQualifiedLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36UnderlyingTypeDeclsReferencedRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InheritedDeclsReferencedRequestEvEEvE15getTombstoneKeyEv OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LookupInfixOperatorRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 40 | static inline RequestKey getTombstoneKey() { | 417 | 40 | return RequestKey::getTombstone(); | 418 | 40 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27LookupPrefixOperatorRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPostfixOperatorRequestEvEEvE15getTombstoneKeyEv OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPrecedenceGroupRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 21 | static inline RequestKey getTombstoneKey() { | 417 | 21 | return RequestKey::getTombstone(); | 418 | 21 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Pattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ExprPatternMatchRequestEvEEvE15getTombstoneKeyEv ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ConditionalRequirementsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 856 | static inline RequestKey getTombstoneKey() { | 417 | 856 | return RequestKey::getTombstone(); | 418 | 856 | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18TypeWitnessRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AssociatedConformanceRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ValueWitnessRequestEvEEvE15getTombstoneKeyEv ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37LookupAllConformancesInContextRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 485 | static inline RequestKey getTombstoneKey() { | 417 | 485 | return RequestKey::getTombstone(); | 418 | 485 | } |
Unexecuted instantiation: RawComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17RawCommentRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE15getTombstoneKeyEv Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IsSingleValueStmtRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 98 | static inline RequestKey getTombstoneKey() { | 417 | 98 | return RequestKey::getTombstone(); | 418 | 98 | } |
Unexecuted instantiation: Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18BreakTargetRequestEvEEvE15getTombstoneKeyEv Unexecuted instantiation: Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ContinueTargetRequestEvEEvE15getTombstoneKeyEv TypeCheckRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RequirementRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 72 | static inline RequestKey getTombstoneKey() { | 417 | 72 | return RequestKey::getTombstone(); | 418 | 72 | } |
TypeRefinementContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40ExpandChildTypeRefinementContextsRequestEvEEvE15getTombstoneKeyEv Line | Count | Source | 416 | 90 | static inline RequestKey getTombstoneKey() { | 417 | 90 | return RequestKey::getTombstone(); | 418 | 90 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE15getTombstoneKeyEv |
419 | 60.9k | static unsigned getHashValue(const RequestKey &key) { |
420 | 60.9k | return hash_value(key); |
421 | 60.9k | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18OptimizedIRRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Frontend.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IDEInspectionFileRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ConstExtract.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ConstantValueInfoRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: GenClass.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS6_ Unexecuted instantiation: GenDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS6_ Unexecuted instantiation: GenDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS6_ Unexecuted instantiation: GenEnum.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS6_ Unexecuted instantiation: GenHeap.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS6_ Unexecuted instantiation: GenMeta.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE12getHashValueERKS6_ IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_12IRGenRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1 | static unsigned getHashValue(const RequestKey &key) { | 420 | 1 | return hash_value(key); | 421 | 1 | } |
Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17LoweredSILRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20PublicSymbolsRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18GenerateTBDRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13APIGenRequestEvEEvE12getHashValueERKS6_ SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 5 | static unsigned getHashValue(const RequestKey &key) { | 420 | 5 | return hash_value(key); | 421 | 5 | } |
Unexecuted instantiation: SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParseSILModuleRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Common.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: PassManager.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExecuteSILPipelineRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IDERequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ResolveProtocolNameRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29CollectOverriddenDeclsRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24TypeRelationCheckRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37RootTypeOfKeypathDynamicMemberRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Serialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ParseSIL.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: BuilderTransform.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PreCheckResultBuilderRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: CSApply.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE12getHashValueERKS6_ CSRanking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32CompareDeclSpecializationRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 14 | static unsigned getHashValue(const RequestKey &key) { | 420 | 14 | return hash_value(key); | 421 | 14 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29EnumElementExprPatternRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE12getHashValueERKS6_ CSStep.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDeclRefinementOfRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 51 | static unsigned getHashValue(const RequestKey &key) { | 420 | 51 | return hash_value(key); | 421 | 51 | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18CxxRecordSemanticsEvEEvE12getHashValueERKS6_ CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35HasUserDefinedDesignatedInitRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 40 | static unsigned getHashValue(const RequestKey &key) { | 420 | 40 | return hash_value(key); | 421 | 40 | } |
CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_44AreAllStoredPropertiesDefaultInitableRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 17 | static unsigned getHashValue(const RequestKey &key) { | 420 | 17 | return hash_value(key); | 421 | 17 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ClosureHasExplicitResultRequestEvEEvE12getHashValueERKS6_ DerivedConformanceDifferentiable.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 4 | static unsigned getHashValue(const RequestKey &key) { | 420 | 4 | return hash_value(key); | 421 | 4 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37RootTypeOfKeypathDynamicMemberRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: MiscDiagnostics.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasIsolatedSelfRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35DistributedModuleIsAvailableRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CheckDistributedFunctionRequestEvEEvE12getHashValueERKS6_ TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ValidatePrecedenceGroupRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 16 | static unsigned getHashValue(const RequestKey &key) { | 420 | 16 | return hash_value(key); | 421 | 16 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE12getHashValueERKS6_ TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 15 | static unsigned getHashValue(const RequestKey &key) { | 420 | 15 | return hash_value(key); | 421 | 15 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34TypeCheckObjCImplementationRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE12getHashValueERKS6_ TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CheckRedeclarationRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 141 | static unsigned getHashValue(const RequestKey &key) { | 420 | 141 | return hash_value(key); | 421 | 141 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE12getHashValueERKS6_ TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ApplyAccessNoteRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 734 | static unsigned getHashValue(const RequestKey &key) { | 420 | 734 | return hash_value(key); | 421 | 734 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE12getHashValueERKS6_ TypeCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18DefaultTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2 | static unsigned getHashValue(const RequestKey &key) { | 420 | 2 | return hash_value(key); | 421 | 2 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CompilerPluginLoadRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE12getHashValueERKS6_ TypeCheckPattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18PatternTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 69 | static unsigned getHashValue(const RequestKey &key) { | 420 | 69 | return hash_value(key); | 421 | 69 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE12getHashValueERKS6_ TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 30 | static unsigned getHashValue(const RequestKey &key) { | 420 | 30 | return hash_value(key); | 421 | 30 | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE12getHashValueERKS6_ TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 62 | static unsigned getHashValue(const RequestKey &key) { | 420 | 62 | return hash_value(key); | 421 | 62 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27PreCheckFunctionBodyRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperLValuenessRequestEvEEvE12getHashValueERKS6_ TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20ExpandAccessorMacrosEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 68 | static unsigned getHashValue(const RequestKey &key) { | 420 | 68 | return hash_value(key); | 421 | 68 | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: TypeCheckType.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ResolveTypeRequestEvEEvE12getHashValueERKS6_ TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26TypeCheckSourceFileRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 6 | static unsigned getHashValue(const RequestKey &key) { | 420 | 6 | return hash_value(key); | 421 | 6 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49CheckInconsistentImplementationOnlyImportsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 13 | static unsigned getHashValue(const RequestKey &key) { | 420 | 13 | return hash_value(key); | 421 | 13 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38CheckInconsistentSPIOnlyImportsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 13 | static unsigned getHashValue(const RequestKey &key) { | 420 | 13 | return hash_value(key); | 421 | 13 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36CheckInconsistentAccessLevelOnImportEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 13 | static unsigned getHashValue(const RequestKey &key) { | 420 | 13 | return hash_value(key); | 421 | 13 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41CheckInconsistentWeakLinkedImportsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 13 | static unsigned getHashValue(const RequestKey &key) { | 420 | 13 | return hash_value(key); | 421 | 13 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 119 | static unsigned getHashValue(const RequestKey &key) { | 420 | 119 | return hash_value(key); | 421 | 119 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckASTNodeAtLocRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS6_ ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1.08k | static unsigned getHashValue(const RequestKey &key) { | 420 | 1.08k | return hash_value(key); | 421 | 1.08k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ObjCInterfaceAndImplementationRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ClangDirectLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ClangCategoryLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18CxxRecordSemanticsEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ImportName.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18IsSafeUseOfCxxDeclEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ImportType.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20CxxRecordAsSwiftTypeEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ParseDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IDEInspectionSecondPassRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ParseRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: AccessRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31TypeDeclsFromWhereClauseRequestEvEEvE12getHashValueERKS6_ ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 3.51k | static unsigned getHashValue(const RequestKey &key) { | 420 | 3.51k | return hash_value(key); | 421 | 3.51k | } |
Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasIsolatedSelfRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ASTPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ClangDirectLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30TypeEraserHasViableInitRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveTypeEraserTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ResolveRawLayoutLikeTypeRequestEvEEvE12getHashValueERKS6_ Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SpecializeAttrTargetDeclRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 16 | static unsigned getHashValue(const RequestKey &key) { | 420 | 16 | return hash_value(key); | 421 | 16 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36SerializeAttrGenericSignatureRequestEvEEvE12getHashValueERKS6_ Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39DifferentiableAttributeTypeCheckRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 8 | static unsigned getHashValue(const RequestKey &key) { | 420 | 8 | return hash_value(key); | 421 | 8 | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DerivativeAttrOriginalDeclRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 10 | static unsigned getHashValue(const RequestKey &key) { | 420 | 10 | return hash_value(key); | 421 | 10 | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29ImplementsAttrProtocolRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 17 | static unsigned getHashValue(const RequestKey &key) { | 420 | 17 | return hash_value(key); | 421 | 17 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38InitAccessorReferencedVariablesRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33SemanticAvailableRangeAttrRequestEvEEvE12getHashValueERKS6_ Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30SemanticUnavailableAttrRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 319 | static unsigned getHashValue(const RequestKey &key) { | 420 | 319 | return hash_value(key); | 421 | 319 | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ExpandMemberAttributeMacrosEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 13.3k | static unsigned getHashValue(const RequestKey &key) { | 420 | 13.3k | return hash_value(key); | 421 | 13.3k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 4.21k | static unsigned getHashValue(const RequestKey &key) { | 420 | 4.21k | return hash_value(key); | 421 | 4.21k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2.32k | static unsigned getHashValue(const RequestKey &key) { | 420 | 2.32k | return hash_value(key); | 421 | 2.32k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ThrownTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsAccessorTransparentRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericParamListRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericSignatureRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 28 | static unsigned getHashValue(const RequestKey &key) { | 420 | 28 | return hash_value(key); | 421 | 28 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ScopedImportLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExtendedNominalRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 6 | static unsigned getHashValue(const RequestKey &key) { | 420 | 6 | return hash_value(key); | 421 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31DefaultAndMaxAccessLevelRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 6 | static unsigned getHashValue(const RequestKey &key) { | 420 | 6 | return hash_value(key); | 421 | 6 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26PatternBindingEntryRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 30 | static unsigned getHashValue(const RequestKey &key) { | 420 | 30 | return hash_value(key); | 421 | 30 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30RequiresOpaqueAccessorsRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36RequiresOpaqueModifyCoroutineRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25SynthesizeAccessorRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 14 | static unsigned getHashValue(const RequestKey &key) { | 420 | 14 | return hash_value(key); | 421 | 14 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 7 | static unsigned getHashValue(const RequestKey &key) { | 420 | 7 | return hash_value(key); | 421 | 7 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsGetterMutatingRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsSetterMutatingRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26OpaqueReadOwnershipRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 14 | static unsigned getHashValue(const RequestKey &key) { | 420 | 14 | return hash_value(key); | 421 | 14 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2 | static unsigned getHashValue(const RequestKey &key) { | 420 | 2 | return hash_value(key); | 421 | 2 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13IsObjCRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsFinalRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17IsMoveOnlyRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16IsDynamicRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30DynamicallyReplacedDeclRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2.17k | static unsigned getHashValue(const RequestKey &key) { | 420 | 2.17k | return hash_value(key); | 421 | 2.17k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36IsImplicitlyUnwrappedOptionalRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InterfaceTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 299 | static unsigned getHashValue(const RequestKey &key) { | 420 | 299 | return hash_value(key); | 421 | 299 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18AccessLevelRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23StoredPropertiesRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 91 | static unsigned getHashValue(const RequestKey &key) { | 420 | 91 | return hash_value(key); | 421 | 91 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29InitAccessorPropertiesRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 19 | static unsigned getHashValue(const RequestKey &key) { | 420 | 19 | return hash_value(key); | 421 | 19 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31MemberwiseInitPropertiesRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 22 | static unsigned getHashValue(const RequestKey &key) { | 420 | 22 | return hash_value(key); | 421 | 22 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40StoredPropertiesAndMissingMembersRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 4 | static unsigned getHashValue(const RequestKey &key) { | 420 | 4 | return hash_value(key); | 421 | 4 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30PropertyWrapperTypeInfoRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsActorRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 596 | static unsigned getHashValue(const RequestKey &key) { | 420 | 596 | return hash_value(key); | 421 | 596 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDistributedActorRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 644 | static unsigned getHashValue(const RequestKey &key) { | 420 | 644 | return hash_value(key); | 421 | 644 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21UnderlyingTypeRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21StructuralTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 536 | static unsigned getHashValue(const RequestKey &key) { | 420 | 536 | return hash_value(key); | 421 | 536 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28DefaultDefinitionTypeRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18EnumRawTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 292 | static unsigned getHashValue(const RequestKey &key) { | 420 | 292 | return hash_value(key); | 421 | 292 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24HasMemberwiseInitRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 35 | static unsigned getHashValue(const RequestKey &key) { | 420 | 35 | return hash_value(key); | 421 | 35 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SynthesizeMemberwiseInitRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 18 | static unsigned getHashValue(const RequestKey &key) { | 420 | 18 | return hash_value(key); | 421 | 18 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ResolveEffectiveMemberwiseInitRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 26 | static unsigned getHashValue(const RequestKey &key) { | 420 | 26 | return hash_value(key); | 421 | 26 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21HasDefaultInitRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 40 | static unsigned getHashValue(const RequestKey &key) { | 420 | 40 | return hash_value(key); | 421 | 40 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28SynthesizeDefaultInitRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 6 | static unsigned getHashValue(const RequestKey &key) { | 420 | 6 | return hash_value(key); | 421 | 6 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GlobalActorInstanceRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20GetDestructorRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21IsDefaultActorRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1 | static unsigned getHashValue(const RequestKey &key) { | 420 | 1 | return hash_value(key); | 421 | 1 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39HasMissingDesignatedInitializersRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37InheritsSuperclassInitializersRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ClassAncestryFlagsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 5 | static unsigned getHashValue(const RequestKey &key) { | 420 | 5 | return hash_value(key); | 421 | 5 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2 | static unsigned getHashValue(const RequestKey &key) { | 420 | 2 | return hash_value(key); | 421 | 2 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25InheritedProtocolsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2 | static unsigned getHashValue(const RequestKey &key) { | 420 | 2 | return hash_value(key); | 421 | 2 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolRequirementsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2 | static unsigned getHashValue(const RequestKey &key) { | 420 | 2 | return hash_value(key); | 421 | 2 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassTypeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProtocolRequiresClassRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2 | static unsigned getHashValue(const RequestKey &key) { | 420 | 2 | return hash_value(key); | 421 | 2 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ExistentialConformsToSelfRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_42HasSelfOrAssociatedTypeRequirementsRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29PrimaryAssociatedTypesRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2 | static unsigned getHashValue(const RequestKey &key) { | 420 | 2 | return hash_value(key); | 421 | 2 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29StructuralRequirementsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 7 | static unsigned getHashValue(const RequestKey &key) { | 420 | 7 | return hash_value(key); | 421 | 7 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeAliasRequirementsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 7 | static unsigned getHashValue(const RequestKey &key) { | 420 | 7 | return hash_value(key); | 421 | 7 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolDependenciesRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 210 | static unsigned getHashValue(const RequestKey &key) { | 420 | 210 | return hash_value(key); | 421 | 210 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27RequirementSignatureRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2 | static unsigned getHashValue(const RequestKey &key) { | 420 | 2 | return hash_value(key); | 421 | 2 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 4 | static unsigned getHashValue(const RequestKey &key) { | 420 | 4 | return hash_value(key); | 421 | 4 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22StorageImplInfoRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24SetterAccessLevelRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasInitAccessorRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 840 | static unsigned getHashValue(const RequestKey &key) { | 420 | 840 | return hash_value(key); | 421 | 840 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 9.70k | static unsigned getHashValue(const RequestKey &key) { | 420 | 9.70k | return hash_value(key); | 421 | 9.70k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20NamingPatternRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 19 | static unsigned getHashValue(const RequestKey &key) { | 420 | 19 | return hash_value(key); | 421 | 19 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParamSpecifierRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 7.27k | static unsigned getHashValue(const RequestKey &key) { | 420 | 7.27k | return hash_value(key); | 421 | 7.27k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34AttachedPropertyWrapperTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 21 | static unsigned getHashValue(const RequestKey &key) { | 420 | 21 | return hash_value(key); | 421 | 21 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 21 | static unsigned getHashValue(const RequestKey &key) { | 420 | 21 | return hash_value(key); | 421 | 21 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 40 | static unsigned getHashValue(const RequestKey &key) { | 420 | 40 | return hash_value(key); | 421 | 40 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 40 | static unsigned getHashValue(const RequestKey &key) { | 420 | 40 | return hash_value(key); | 421 | 40 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperMutabilityRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 51 | static unsigned getHashValue(const RequestKey &key) { | 420 | 51 | return hash_value(key); | 421 | 51 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DefaultArgumentInitContextRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentExprRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentTypeRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResultBuilderTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 98 | static unsigned getHashValue(const RequestKey &key) { | 420 | 98 | return hash_value(key); | 421 | 98 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AttachedResultBuilderRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 227 | static unsigned getHashValue(const RequestKey &key) { | 420 | 227 | return hash_value(key); | 421 | 227 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ResultTypeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 25 | static unsigned getHashValue(const RequestKey &key) { | 420 | 25 | return hash_value(key); | 421 | 25 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ParseAbstractFunctionBodyRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 45 | static unsigned getHashValue(const RequestKey &key) { | 420 | 45 | return hash_value(key); | 421 | 45 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckFunctionBodyRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 106 | static unsigned getHashValue(const RequestKey &key) { | 420 | 106 | return hash_value(key); | 421 | 106 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsFunctionBodySkippedRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26NeedsNewVTableEntryRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 3.27k | static unsigned getHashValue(const RequestKey &key) { | 420 | 3.27k | return hash_value(key); | 421 | 3.27k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15IsStaticRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19SimpleDidSetRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SelfAccessKindRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20EnumRawValuesRequestEvEEvE12getHashValueERKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 547 | static unsigned getHashValue(const RequestKey &key) { | 420 | 547 | return hash_value(key); | 421 | 547 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19BodyInitKindRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 6 | static unsigned getHashValue(const RequestKey &key) { | 420 | 6 | return hash_value(key); | 421 | 6 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 94 | static unsigned getHashValue(const RequestKey &key) { | 420 | 94 | return hash_value(key); | 421 | 94 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ActorIsolationRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2.37k | static unsigned getHashValue(const RequestKey &key) { | 420 | 2.37k | return hash_value(key); | 421 | 2.37k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE12getHashValueERKS6_ DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26FragileFunctionKindRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 253 | static unsigned getHashValue(const RequestKey &key) { | 420 | 253 | return hash_value(key); | 421 | 253 | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 46 | static unsigned getHashValue(const RequestKey &key) { | 420 | 46 | return hash_value(key); | 421 | 46 | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ABIMembersRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 48 | static unsigned getHashValue(const RequestKey &key) { | 420 | 48 | return hash_value(key); | 421 | 48 | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17AllMembersRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 14 | static unsigned getHashValue(const RequestKey &key) { | 420 | 14 | return hash_value(key); | 421 | 14 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_48GetDistributedActorArgumentDecodingMethodRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_43GetDistributedActorInvocationDecoderRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49GetDistributedRemoteCallTargetInitFunctionRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_50GetDistributedActorSystemRemoteCallFunctionRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GetDistributedThunkRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40GetDistributedActorSystemPropertyRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36GetDistributedActorIDPropertyRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: DocComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27SemanticBriefCommentRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36PolymorphicEffectRequirementsRequestEvEEvE12getHashValueERKS6_ Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PolymorphicEffectKindRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 74 | static unsigned getHashValue(const RequestKey &key) { | 420 | 74 | return hash_value(key); | 421 | 74 | } |
Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ConformanceHasEffectRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CallerSideDefaultArgExprRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE12getHashValueERKS6_ GenericSignature.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 36 | static unsigned getHashValue(const RequestKey &key) { | 420 | 36 | return hash_value(key); | 421 | 36 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22IsNonUserModuleRequestEvEEvE12getHashValueERKS6_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleImplicitImportsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 14 | static unsigned getHashValue(const RequestKey &key) { | 420 | 14 | return hash_value(key); | 421 | 14 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PrimarySourceFilesRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 12 | static unsigned getHashValue(const RequestKey &key) { | 420 | 12 | return hash_value(key); | 421 | 12 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE12getHashValueERKS6_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 89 | static unsigned getHashValue(const RequestKey &key) { | 420 | 89 | return hash_value(key); | 421 | 89 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GetImplicitSendableRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 49 | static unsigned getHashValue(const RequestKey &key) { | 420 | 49 | return hash_value(key); | 421 | 49 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41GetDistributedActorImplicitCodableRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29HasImportsMatchingFlagRequestEvEEvE12getHashValueERKS6_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16SPIGroupsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 2.06k | static unsigned getHashValue(const RequestKey &key) { | 420 | 2.06k | return hash_value(key); | 421 | 2.06k | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ModuleLibraryLevelRequestEvEEvE12getHashValueERKS6_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ParseTopLevelDeclsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 17 | static unsigned getHashValue(const RequestKey &key) { | 420 | 17 | return hash_value(key); | 421 | 17 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExportedSourceFileRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 14 | static unsigned getHashValue(const RequestKey &key) { | 420 | 14 | return hash_value(key); | 421 | 14 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22GetSourceFileAsyncNodeEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 4 | static unsigned getHashValue(const RequestKey &key) { | 420 | 4 | return hash_value(key); | 421 | 4 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32LookupConformanceInModuleRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ModuleNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21LookupInModuleRequestEvEEvE12getHashValueERKS6_ NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 34 | static unsigned getHashValue(const RequestKey &key) { | 420 | 34 | return hash_value(key); | 421 | 34 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE12getHashValueERKS6_ NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 1.46k | static unsigned getHashValue(const RequestKey &key) { | 420 | 1.46k | return hash_value(key); | 421 | 1.46k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsCallAsFunctionNominalRequestEvEEvE12getHashValueERKS6_ NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38HasDynamicMemberLookupAttributeRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 77 | static unsigned getHashValue(const RequestKey &key) { | 420 | 77 | return hash_value(key); | 421 | 77 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32SelfBoundsFromWhereClauseRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37SelfBoundsFromGenericSignatureRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19DirectLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CXXNamespaceMemberLookupEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22AnyObjectLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22QualifiedLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleQualifiedLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36UnderlyingTypeDeclsReferencedRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InheritedDeclsReferencedRequestEvEEvE12getHashValueERKS6_ OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LookupInfixOperatorRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 14 | static unsigned getHashValue(const RequestKey &key) { | 420 | 14 | return hash_value(key); | 421 | 14 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27LookupPrefixOperatorRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPostfixOperatorRequestEvEEvE12getHashValueERKS6_ OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPrecedenceGroupRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 5 | static unsigned getHashValue(const RequestKey &key) { | 420 | 5 | return hash_value(key); | 421 | 5 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Pattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ExprPatternMatchRequestEvEEvE12getHashValueERKS6_ ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ConditionalRequirementsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 112 | static unsigned getHashValue(const RequestKey &key) { | 420 | 112 | return hash_value(key); | 421 | 112 | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18TypeWitnessRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AssociatedConformanceRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ValueWitnessRequestEvEEvE12getHashValueERKS6_ ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37LookupAllConformancesInContextRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 63 | static unsigned getHashValue(const RequestKey &key) { | 420 | 63 | return hash_value(key); | 421 | 63 | } |
Unexecuted instantiation: RawComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17RawCommentRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE12getHashValueERKS6_ Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IsSingleValueStmtRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 49 | static unsigned getHashValue(const RequestKey &key) { | 420 | 49 | return hash_value(key); | 421 | 49 | } |
Unexecuted instantiation: Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18BreakTargetRequestEvEEvE12getHashValueERKS6_ Unexecuted instantiation: Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ContinueTargetRequestEvEEvE12getHashValueERKS6_ TypeCheckRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RequirementRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 47 | static unsigned getHashValue(const RequestKey &key) { | 420 | 47 | return hash_value(key); | 421 | 47 | } |
TypeRefinementContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40ExpandChildTypeRefinementContextsRequestEvEEvE12getHashValueERKS6_ Line | Count | Source | 419 | 37 | static unsigned getHashValue(const RequestKey &key) { | 420 | 37 | return hash_value(key); | 421 | 37 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE12getHashValueERKS6_ |
422 | 115k | static unsigned getHashValue(const Request &request) { |
423 | 115k | return hash_value(request); |
424 | 115k | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Frontend.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IDEInspectionFileRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ConstExtract.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ConstantValueInfoRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: GenClass.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS5_ Unexecuted instantiation: GenDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS5_ Unexecuted instantiation: GenDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS5_ Unexecuted instantiation: GenEnum.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS5_ Unexecuted instantiation: GenHeap.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS5_ Unexecuted instantiation: GenMeta.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS5_ Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE12getHashValueERKS5_ IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_12IRGenRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1 | static unsigned getHashValue(const Request &request) { | 423 | 1 | return hash_value(request); | 424 | 1 | } |
SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 5 | static unsigned getHashValue(const Request &request) { | 423 | 5 | return hash_value(request); | 424 | 5 | } |
Common.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 8 | static unsigned getHashValue(const Request &request) { | 423 | 8 | return hash_value(request); | 424 | 8 | } |
Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: IDERequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ResolveProtocolNameRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29CollectOverriddenDeclsRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24TypeRelationCheckRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Serialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: BuilderTransform.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PreCheckResultBuilderRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: CSApply.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE12getHashValueERKS5_ CSRanking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32CompareDeclSpecializationRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 25 | static unsigned getHashValue(const Request &request) { | 423 | 25 | return hash_value(request); | 424 | 25 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29EnumElementExprPatternRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE12getHashValueERKS5_ CSStep.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDeclRefinementOfRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 85 | static unsigned getHashValue(const Request &request) { | 423 | 85 | return hash_value(request); | 424 | 85 | } |
CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35HasUserDefinedDesignatedInitRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 52 | static unsigned getHashValue(const Request &request) { | 423 | 52 | return hash_value(request); | 424 | 52 | } |
CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_44AreAllStoredPropertiesDefaultInitableRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 12 | static unsigned getHashValue(const Request &request) { | 423 | 12 | return hash_value(request); | 424 | 12 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ClosureHasExplicitResultRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35DistributedModuleIsAvailableRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CheckDistributedFunctionRequestEvEEvE12getHashValueERKS5_ TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ValidatePrecedenceGroupRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 9 | static unsigned getHashValue(const Request &request) { | 423 | 9 | return hash_value(request); | 424 | 9 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE12getHashValueERKS5_ TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 16 | static unsigned getHashValue(const Request &request) { | 423 | 16 | return hash_value(request); | 424 | 16 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34TypeCheckObjCImplementationRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE12getHashValueERKS5_ TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CheckRedeclarationRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 126 | static unsigned getHashValue(const Request &request) { | 423 | 126 | return hash_value(request); | 424 | 126 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE12getHashValueERKS5_ TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ApplyAccessNoteRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 990 | static unsigned getHashValue(const Request &request) { | 423 | 990 | return hash_value(request); | 424 | 990 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE12getHashValueERKS5_ TypeCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18DefaultTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 39 | static unsigned getHashValue(const Request &request) { | 423 | 39 | return hash_value(request); | 424 | 39 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CompilerPluginLoadRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE12getHashValueERKS5_ TypeCheckPattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18PatternTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 106 | static unsigned getHashValue(const Request &request) { | 423 | 106 | return hash_value(request); | 424 | 106 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE12getHashValueERKS5_ TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 55 | static unsigned getHashValue(const Request &request) { | 423 | 55 | return hash_value(request); | 424 | 55 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperLValuenessRequestEvEEvE12getHashValueERKS5_ TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20ExpandAccessorMacrosEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 63 | static unsigned getHashValue(const Request &request) { | 423 | 63 | return hash_value(request); | 424 | 63 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26TypeCheckSourceFileRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 9 | static unsigned getHashValue(const Request &request) { | 423 | 9 | return hash_value(request); | 424 | 9 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49CheckInconsistentImplementationOnlyImportsRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38CheckInconsistentSPIOnlyImportsRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36CheckInconsistentAccessLevelOnImportEvEEvE12getHashValueERKS5_ Unexecuted instantiation: TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41CheckInconsistentWeakLinkedImportsRequestEvEEvE12getHashValueERKS5_ TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 67 | static unsigned getHashValue(const Request &request) { | 423 | 67 | return hash_value(request); | 424 | 67 | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ObjCInterfaceAndImplementationRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IDEInspectionSecondPassRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ParseRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30TypeEraserHasViableInitRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveTypeEraserTypeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ResolveRawLayoutLikeTypeRequestEvEEvE12getHashValueERKS5_ Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SpecializeAttrTargetDeclRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 15 | static unsigned getHashValue(const Request &request) { | 423 | 15 | return hash_value(request); | 424 | 15 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36SerializeAttrGenericSignatureRequestEvEEvE12getHashValueERKS5_ Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39DifferentiableAttributeTypeCheckRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 27 | static unsigned getHashValue(const Request &request) { | 423 | 27 | return hash_value(request); | 424 | 27 | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DerivativeAttrOriginalDeclRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 24 | static unsigned getHashValue(const Request &request) { | 423 | 24 | return hash_value(request); | 424 | 24 | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29ImplementsAttrProtocolRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 2 | static unsigned getHashValue(const Request &request) { | 423 | 2 | return hash_value(request); | 424 | 2 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38InitAccessorReferencedVariablesRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33SemanticAvailableRangeAttrRequestEvEEvE12getHashValueERKS5_ Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30SemanticUnavailableAttrRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 453 | static unsigned getHashValue(const Request &request) { | 423 | 453 | return hash_value(request); | 424 | 453 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ExpandMemberAttributeMacrosEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 8.83k | static unsigned getHashValue(const Request &request) { | 423 | 8.83k | return hash_value(request); | 424 | 8.83k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 2.51k | static unsigned getHashValue(const Request &request) { | 423 | 2.51k | return hash_value(request); | 424 | 2.51k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 5.95k | static unsigned getHashValue(const Request &request) { | 423 | 5.95k | return hash_value(request); | 424 | 5.95k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ThrownTypeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsAccessorTransparentRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericParamListRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericSignatureRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 9.81k | static unsigned getHashValue(const Request &request) { | 423 | 9.81k | return hash_value(request); | 424 | 9.81k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ScopedImportLookupRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExtendedNominalRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 5 | static unsigned getHashValue(const Request &request) { | 423 | 5 | return hash_value(request); | 424 | 5 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31DefaultAndMaxAccessLevelRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 60 | static unsigned getHashValue(const Request &request) { | 423 | 60 | return hash_value(request); | 424 | 60 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26PatternBindingEntryRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30RequiresOpaqueAccessorsRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36RequiresOpaqueModifyCoroutineRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25SynthesizeAccessorRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 27 | static unsigned getHashValue(const Request &request) { | 423 | 27 | return hash_value(request); | 424 | 27 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsGetterMutatingRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsSetterMutatingRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26OpaqueReadOwnershipRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 35 | static unsigned getHashValue(const Request &request) { | 423 | 35 | return hash_value(request); | 424 | 35 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 89 | static unsigned getHashValue(const Request &request) { | 423 | 89 | return hash_value(request); | 424 | 89 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13IsObjCRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsFinalRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17IsMoveOnlyRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16IsDynamicRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30DynamicallyReplacedDeclRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.44k | static unsigned getHashValue(const Request &request) { | 423 | 1.44k | return hash_value(request); | 424 | 1.44k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36IsImplicitlyUnwrappedOptionalRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InterfaceTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 31.1k | static unsigned getHashValue(const Request &request) { | 423 | 31.1k | return hash_value(request); | 424 | 31.1k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18AccessLevelRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23StoredPropertiesRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 10.2k | static unsigned getHashValue(const Request &request) { | 423 | 10.2k | return hash_value(request); | 424 | 10.2k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29InitAccessorPropertiesRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 34 | static unsigned getHashValue(const Request &request) { | 423 | 34 | return hash_value(request); | 424 | 34 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31MemberwiseInitPropertiesRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 28 | static unsigned getHashValue(const Request &request) { | 423 | 28 | return hash_value(request); | 424 | 28 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40StoredPropertiesAndMissingMembersRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 16 | static unsigned getHashValue(const Request &request) { | 423 | 16 | return hash_value(request); | 424 | 16 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30PropertyWrapperTypeInfoRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsActorRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 5.36k | static unsigned getHashValue(const Request &request) { | 423 | 5.36k | return hash_value(request); | 424 | 5.36k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDistributedActorRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 3.20k | static unsigned getHashValue(const Request &request) { | 423 | 3.20k | return hash_value(request); | 424 | 3.20k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21UnderlyingTypeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21StructuralTypeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28DefaultDefinitionTypeRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18EnumRawTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 11 | static unsigned getHashValue(const Request &request) { | 423 | 11 | return hash_value(request); | 424 | 11 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24HasMemberwiseInitRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 42 | static unsigned getHashValue(const Request &request) { | 423 | 42 | return hash_value(request); | 424 | 42 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SynthesizeMemberwiseInitRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 24 | static unsigned getHashValue(const Request &request) { | 423 | 24 | return hash_value(request); | 424 | 24 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ResolveEffectiveMemberwiseInitRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 67 | static unsigned getHashValue(const Request &request) { | 423 | 67 | return hash_value(request); | 424 | 67 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21HasDefaultInitRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 17 | static unsigned getHashValue(const Request &request) { | 423 | 17 | return hash_value(request); | 424 | 17 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28SynthesizeDefaultInitRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 3 | static unsigned getHashValue(const Request &request) { | 423 | 3 | return hash_value(request); | 424 | 3 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GlobalActorInstanceRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20GetDestructorRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21IsDefaultActorRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 21 | static unsigned getHashValue(const Request &request) { | 423 | 21 | return hash_value(request); | 424 | 21 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39HasMissingDesignatedInitializersRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37InheritsSuperclassInitializersRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ClassAncestryFlagsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 38 | static unsigned getHashValue(const Request &request) { | 423 | 38 | return hash_value(request); | 424 | 38 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1 | static unsigned getHashValue(const Request &request) { | 423 | 1 | return hash_value(request); | 424 | 1 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25InheritedProtocolsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 124 | static unsigned getHashValue(const Request &request) { | 423 | 124 | return hash_value(request); | 424 | 124 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolRequirementsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 7 | static unsigned getHashValue(const Request &request) { | 423 | 7 | return hash_value(request); | 424 | 7 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassTypeRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProtocolRequiresClassRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 5 | static unsigned getHashValue(const Request &request) { | 423 | 5 | return hash_value(request); | 424 | 5 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ExistentialConformsToSelfRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_42HasSelfOrAssociatedTypeRequirementsRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29PrimaryAssociatedTypesRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29StructuralRequirementsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 8 | static unsigned getHashValue(const Request &request) { | 423 | 8 | return hash_value(request); | 424 | 8 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeAliasRequirementsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1 | static unsigned getHashValue(const Request &request) { | 423 | 1 | return hash_value(request); | 424 | 1 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolDependenciesRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 2.59k | static unsigned getHashValue(const Request &request) { | 423 | 2.59k | return hash_value(request); | 424 | 2.59k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27RequirementSignatureRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 361 | static unsigned getHashValue(const Request &request) { | 423 | 361 | return hash_value(request); | 424 | 361 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 2.93k | static unsigned getHashValue(const Request &request) { | 423 | 2.93k | return hash_value(request); | 424 | 2.93k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22StorageImplInfoRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24SetterAccessLevelRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasInitAccessorRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 1.54k | static unsigned getHashValue(const Request &request) { | 423 | 1.54k | return hash_value(request); | 424 | 1.54k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 154 | static unsigned getHashValue(const Request &request) { | 423 | 154 | return hash_value(request); | 424 | 154 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20NamingPatternRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 11 | static unsigned getHashValue(const Request &request) { | 423 | 11 | return hash_value(request); | 424 | 11 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParamSpecifierRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 7.10k | static unsigned getHashValue(const Request &request) { | 423 | 7.10k | return hash_value(request); | 424 | 7.10k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34AttachedPropertyWrapperTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 18 | static unsigned getHashValue(const Request &request) { | 423 | 18 | return hash_value(request); | 424 | 18 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 18 | static unsigned getHashValue(const Request &request) { | 423 | 18 | return hash_value(request); | 424 | 18 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 48 | static unsigned getHashValue(const Request &request) { | 423 | 48 | return hash_value(request); | 424 | 48 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 53 | static unsigned getHashValue(const Request &request) { | 423 | 53 | return hash_value(request); | 424 | 53 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperMutabilityRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 85 | static unsigned getHashValue(const Request &request) { | 423 | 85 | return hash_value(request); | 424 | 85 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DefaultArgumentInitContextRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentExprRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentTypeRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResultBuilderTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 166 | static unsigned getHashValue(const Request &request) { | 423 | 166 | return hash_value(request); | 424 | 166 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AttachedResultBuilderRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 233 | static unsigned getHashValue(const Request &request) { | 423 | 233 | return hash_value(request); | 424 | 233 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ResultTypeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 675 | static unsigned getHashValue(const Request &request) { | 423 | 675 | return hash_value(request); | 424 | 675 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ParseAbstractFunctionBodyRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 397 | static unsigned getHashValue(const Request &request) { | 423 | 397 | return hash_value(request); | 424 | 397 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckFunctionBodyRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 78 | static unsigned getHashValue(const Request &request) { | 423 | 78 | return hash_value(request); | 424 | 78 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsFunctionBodySkippedRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26NeedsNewVTableEntryRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 24 | static unsigned getHashValue(const Request &request) { | 423 | 24 | return hash_value(request); | 424 | 24 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15IsStaticRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19SimpleDidSetRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SelfAccessKindRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20EnumRawValuesRequestEvEEvE12getHashValueERKS5_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 195 | static unsigned getHashValue(const Request &request) { | 423 | 195 | return hash_value(request); | 424 | 195 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19BodyInitKindRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 5 | static unsigned getHashValue(const Request &request) { | 423 | 5 | return hash_value(request); | 424 | 5 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 13 | static unsigned getHashValue(const Request &request) { | 423 | 13 | return hash_value(request); | 424 | 13 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ActorIsolationRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 4.28k | static unsigned getHashValue(const Request &request) { | 423 | 4.28k | return hash_value(request); | 424 | 4.28k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE12getHashValueERKS5_ DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26FragileFunctionKindRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 542 | static unsigned getHashValue(const Request &request) { | 423 | 542 | return hash_value(request); | 424 | 542 | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 828 | static unsigned getHashValue(const Request &request) { | 423 | 828 | return hash_value(request); | 424 | 828 | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ABIMembersRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 70 | static unsigned getHashValue(const Request &request) { | 423 | 70 | return hash_value(request); | 424 | 70 | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17AllMembersRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 14 | static unsigned getHashValue(const Request &request) { | 423 | 14 | return hash_value(request); | 424 | 14 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_48GetDistributedActorArgumentDecodingMethodRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_43GetDistributedActorInvocationDecoderRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49GetDistributedRemoteCallTargetInitFunctionRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_50GetDistributedActorSystemRemoteCallFunctionRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GetDistributedThunkRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40GetDistributedActorSystemPropertyRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36GetDistributedActorIDPropertyRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: DocComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27SemanticBriefCommentRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36PolymorphicEffectRequirementsRequestEvEEvE12getHashValueERKS5_ Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PolymorphicEffectKindRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 219 | static unsigned getHashValue(const Request &request) { | 423 | 219 | return hash_value(request); | 424 | 219 | } |
Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ConformanceHasEffectRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CallerSideDefaultArgExprRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE12getHashValueERKS5_ GenericSignature.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 114 | static unsigned getHashValue(const Request &request) { | 423 | 114 | return hash_value(request); | 424 | 114 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22IsNonUserModuleRequestEvEEvE12getHashValueERKS5_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleImplicitImportsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 3 | static unsigned getHashValue(const Request &request) { | 423 | 3 | return hash_value(request); | 424 | 3 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PrimarySourceFilesRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 24 | static unsigned getHashValue(const Request &request) { | 423 | 24 | return hash_value(request); | 424 | 24 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE12getHashValueERKS5_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 4.57k | static unsigned getHashValue(const Request &request) { | 423 | 4.57k | return hash_value(request); | 424 | 4.57k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GetImplicitSendableRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 84 | static unsigned getHashValue(const Request &request) { | 423 | 84 | return hash_value(request); | 424 | 84 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41GetDistributedActorImplicitCodableRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29HasImportsMatchingFlagRequestEvEEvE12getHashValueERKS5_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16SPIGroupsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 3.95k | static unsigned getHashValue(const Request &request) { | 423 | 3.95k | return hash_value(request); | 424 | 3.95k | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ModuleLibraryLevelRequestEvEEvE12getHashValueERKS5_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ParseTopLevelDeclsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 77 | static unsigned getHashValue(const Request &request) { | 423 | 77 | return hash_value(request); | 424 | 77 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExportedSourceFileRequestEvEEvE12getHashValueERKS5_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22GetSourceFileAsyncNodeEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 4 | static unsigned getHashValue(const Request &request) { | 423 | 4 | return hash_value(request); | 424 | 4 | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 65 | static unsigned getHashValue(const Request &request) { | 423 | 65 | return hash_value(request); | 424 | 65 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE12getHashValueERKS5_ NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 779 | static unsigned getHashValue(const Request &request) { | 423 | 779 | return hash_value(request); | 424 | 779 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsCallAsFunctionNominalRequestEvEEvE12getHashValueERKS5_ NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38HasDynamicMemberLookupAttributeRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 133 | static unsigned getHashValue(const Request &request) { | 423 | 133 | return hash_value(request); | 424 | 133 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE12getHashValueERKS5_ OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LookupInfixOperatorRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 21 | static unsigned getHashValue(const Request &request) { | 423 | 21 | return hash_value(request); | 424 | 21 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27LookupPrefixOperatorRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPostfixOperatorRequestEvEEvE12getHashValueERKS5_ OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPrecedenceGroupRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 11 | static unsigned getHashValue(const Request &request) { | 423 | 11 | return hash_value(request); | 424 | 11 | } |
Unexecuted instantiation: Pattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ExprPatternMatchRequestEvEEvE12getHashValueERKS5_ ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ConditionalRequirementsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 733 | static unsigned getHashValue(const Request &request) { | 423 | 733 | return hash_value(request); | 424 | 733 | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18TypeWitnessRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AssociatedConformanceRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ValueWitnessRequestEvEEvE12getHashValueERKS5_ ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37LookupAllConformancesInContextRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 413 | static unsigned getHashValue(const Request &request) { | 423 | 413 | return hash_value(request); | 424 | 413 | } |
Unexecuted instantiation: RawComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17RawCommentRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE12getHashValueERKS5_ Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IsSingleValueStmtRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 42 | static unsigned getHashValue(const Request &request) { | 423 | 42 | return hash_value(request); | 424 | 42 | } |
Unexecuted instantiation: Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18BreakTargetRequestEvEEvE12getHashValueERKS5_ Unexecuted instantiation: Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ContinueTargetRequestEvEEvE12getHashValueERKS5_ TypeCheckRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RequirementRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 18 | static unsigned getHashValue(const Request &request) { | 423 | 18 | return hash_value(request); | 424 | 18 | } |
TypeRefinementContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40ExpandChildTypeRefinementContextsRequestEvEEvE12getHashValueERKS5_ Line | Count | Source | 422 | 48 | static unsigned getHashValue(const Request &request) { | 423 | 48 | return hash_value(request); | 424 | 48 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE12getHashValueERKS5_ |
425 | 830k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { |
426 | 830k | return lhs == rhs; |
427 | 830k | } Unexecuted instantiation: sil_llvm_gen_main.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18OptimizedIRRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Frontend.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IDEInspectionFileRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ModuleInterfaceSupport.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ConstExtract.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ConstantValueInfoRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: GenClass.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: GenDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: GenDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: GenEnum.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: GenHeap.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: GenMeta.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE7isEqualERKS6_S9_ IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_12IRGenRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 70 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 70 | return lhs == rhs; | 427 | 70 | } |
Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17LoweredSILRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20PublicSymbolsRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18GenerateTBDRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TBDGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13APIGenRequestEvEEvE7isEqualERKS6_S9_ SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 350 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 350 | return lhs == rhs; | 427 | 350 | } |
Unexecuted instantiation: SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParseSILModuleRequestEvEEvE7isEqualERKS6_S9_ Common.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 2 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 2 | return lhs == rhs; | 427 | 2 | } |
Unexecuted instantiation: PassManager.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExecuteSILPipelineRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IDERequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ResolveProtocolNameRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29CollectOverriddenDeclsRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24TypeRelationCheckRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37RootTypeOfKeypathDynamicMemberRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Deserialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Serialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ParseSIL.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: BuilderTransform.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PreCheckResultBuilderRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: CSApply.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE7isEqualERKS6_S9_ CSRanking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32CompareDeclSpecializationRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 315 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 315 | return lhs == rhs; | 427 | 315 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29EnumElementExprPatternRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE7isEqualERKS6_S9_ CSStep.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDeclRefinementOfRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 693 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 693 | return lhs == rhs; | 427 | 693 | } |
Unexecuted instantiation: CSDiagnostics.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18CxxRecordSemanticsEvEEvE7isEqualERKS6_S9_ CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35HasUserDefinedDesignatedInitRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 909 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 909 | return lhs == rhs; | 427 | 909 | } |
CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_44AreAllStoredPropertiesDefaultInitableRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 444 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 444 | return lhs == rhs; | 427 | 444 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ClosureHasExplicitResultRequestEvEEvE7isEqualERKS6_S9_ DerivedConformanceDifferentiable.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 88 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 88 | return lhs == rhs; | 427 | 88 | } |
Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37RootTypeOfKeypathDynamicMemberRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: MiscDiagnostics.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasIsolatedSelfRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35DistributedModuleIsAvailableRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CheckDistributedFunctionRequestEvEEvE7isEqualERKS6_S9_ TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ValidatePrecedenceGroupRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 425 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 425 | return lhs == rhs; | 427 | 425 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE7isEqualERKS6_S9_ TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 420 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 420 | return lhs == rhs; | 427 | 420 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34TypeCheckObjCImplementationRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE7isEqualERKS6_S9_ TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CheckRedeclarationRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.99k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.99k | return lhs == rhs; | 427 | 1.99k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE7isEqualERKS6_S9_ TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ApplyAccessNoteRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 9.74k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 9.74k | return lhs == rhs; | 427 | 9.74k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE7isEqualERKS6_S9_ TypeCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18DefaultTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 109 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 109 | return lhs == rhs; | 427 | 109 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CompilerPluginLoadRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE7isEqualERKS6_S9_ TypeCheckPattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18PatternTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 878 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 878 | return lhs == rhs; | 427 | 878 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE7isEqualERKS6_S9_ TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 472 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 472 | return lhs == rhs; | 427 | 472 | } |
Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE7isEqualERKS6_S9_ TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 955 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 955 | return lhs == rhs; | 427 | 955 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27PreCheckFunctionBodyRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperLValuenessRequestEvEEvE7isEqualERKS6_S9_ TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20ExpandAccessorMacrosEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 866 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 866 | return lhs == rhs; | 427 | 866 | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: TypeCheckType.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ResolveTypeRequestEvEEvE7isEqualERKS6_S9_ TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26TypeCheckSourceFileRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 420 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 420 | return lhs == rhs; | 427 | 420 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49CheckInconsistentImplementationOnlyImportsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 910 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 910 | return lhs == rhs; | 427 | 910 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38CheckInconsistentSPIOnlyImportsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 910 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 910 | return lhs == rhs; | 427 | 910 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36CheckInconsistentAccessLevelOnImportEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 910 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 910 | return lhs == rhs; | 427 | 910 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41CheckInconsistentWeakLinkedImportsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 910 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 910 | return lhs == rhs; | 427 | 910 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.79k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.79k | return lhs == rhs; | 427 | 1.79k | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckASTNodeAtLocRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ClangDerivedConformances.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS6_S9_ ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 10.5k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 10.5k | return lhs == rhs; | 427 | 10.5k | } |
Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ObjCInterfaceAndImplementationRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ClangDirectLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ClangCategoryLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18CxxRecordSemanticsEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ImportName.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18IsSafeUseOfCxxDeclEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ImportType.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20CxxRecordAsSwiftTypeEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ParseDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IDEInspectionSecondPassRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ParseRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: AccessRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31TypeDeclsFromWhereClauseRequestEvEEvE7isEqualERKS6_S9_ ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 32.4k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 32.4k | return lhs == rhs; | 427 | 32.4k | } |
Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasIsolatedSelfRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ASTPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ClangDirectLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30TypeEraserHasViableInitRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveTypeEraserTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ResolveRawLayoutLikeTypeRequestEvEEvE7isEqualERKS6_S9_ Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SpecializeAttrTargetDeclRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 180 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 180 | return lhs == rhs; | 427 | 180 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36SerializeAttrGenericSignatureRequestEvEEvE7isEqualERKS6_S9_ Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39DifferentiableAttributeTypeCheckRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 371 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 371 | return lhs == rhs; | 427 | 371 | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DerivativeAttrOriginalDeclRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 258 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 258 | return lhs == rhs; | 427 | 258 | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29ImplementsAttrProtocolRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 422 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 422 | return lhs == rhs; | 427 | 422 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38InitAccessorReferencedVariablesRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33SemanticAvailableRangeAttrRequestEvEEvE7isEqualERKS6_S9_ Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30SemanticUnavailableAttrRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 4.19k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 4.19k | return lhs == rhs; | 427 | 4.19k | } |
Unexecuted instantiation: CASTBridging.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ExpandMemberAttributeMacrosEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 154k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 154k | return lhs == rhs; | 427 | 154k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 46.7k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 46.7k | return lhs == rhs; | 427 | 46.7k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 27.3k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 27.3k | return lhs == rhs; | 427 | 27.3k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ThrownTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsAccessorTransparentRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericParamListRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericSignatureRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 13.0k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 13.0k | return lhs == rhs; | 427 | 13.0k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ScopedImportLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExtendedNominalRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 164 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 164 | return lhs == rhs; | 427 | 164 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31DefaultAndMaxAccessLevelRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 181 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 181 | return lhs == rhs; | 427 | 181 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26PatternBindingEntryRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 289 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 289 | return lhs == rhs; | 427 | 289 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30RequiresOpaqueAccessorsRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36RequiresOpaqueModifyCoroutineRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25SynthesizeAccessorRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 157 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 157 | return lhs == rhs; | 427 | 157 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 112 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 112 | return lhs == rhs; | 427 | 112 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsGetterMutatingRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsSetterMutatingRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26OpaqueReadOwnershipRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 166 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 166 | return lhs == rhs; | 427 | 166 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 219 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 219 | return lhs == rhs; | 427 | 219 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13IsObjCRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsFinalRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17IsMoveOnlyRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16IsDynamicRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30DynamicallyReplacedDeclRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 24.3k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 24.3k | return lhs == rhs; | 427 | 24.3k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36IsImplicitlyUnwrappedOptionalRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InterfaceTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 113k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 113k | return lhs == rhs; | 427 | 113k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18AccessLevelRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23StoredPropertiesRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 4.42k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 4.42k | return lhs == rhs; | 427 | 4.42k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29InitAccessorPropertiesRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 462 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 462 | return lhs == rhs; | 427 | 462 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31MemberwiseInitPropertiesRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 474 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 474 | return lhs == rhs; | 427 | 474 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40StoredPropertiesAndMissingMembersRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 91 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 91 | return lhs == rhs; | 427 | 91 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30PropertyWrapperTypeInfoRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsActorRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 8.21k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 8.21k | return lhs == rhs; | 427 | 8.21k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDistributedActorRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 10.1k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 10.1k | return lhs == rhs; | 427 | 10.1k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21UnderlyingTypeRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21StructuralTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 5.22k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 5.22k | return lhs == rhs; | 427 | 5.22k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28DefaultDefinitionTypeRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18EnumRawTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 3.17k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 3.17k | return lhs == rhs; | 427 | 3.17k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24HasMemberwiseInitRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 622 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 622 | return lhs == rhs; | 427 | 622 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SynthesizeMemberwiseInitRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 372 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 372 | return lhs == rhs; | 427 | 372 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ResolveEffectiveMemberwiseInitRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 487 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 487 | return lhs == rhs; | 427 | 487 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21HasDefaultInitRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 905 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 905 | return lhs == rhs; | 427 | 905 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28SynthesizeDefaultInitRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 231 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 231 | return lhs == rhs; | 427 | 231 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GlobalActorInstanceRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20GetDestructorRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21IsDefaultActorRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 70 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 70 | return lhs == rhs; | 427 | 70 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39HasMissingDesignatedInitializersRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37InheritsSuperclassInitializersRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ClassAncestryFlagsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 224 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 224 | return lhs == rhs; | 427 | 224 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 77 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 77 | return lhs == rhs; | 427 | 77 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25InheritedProtocolsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 172 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 172 | return lhs == rhs; | 427 | 172 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolRequirementsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 80 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 80 | return lhs == rhs; | 427 | 80 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassTypeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProtocolRequiresClassRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 80 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 80 | return lhs == rhs; | 427 | 80 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ExistentialConformsToSelfRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_42HasSelfOrAssociatedTypeRequirementsRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29PrimaryAssociatedTypesRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 140 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 140 | return lhs == rhs; | 427 | 140 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29StructuralRequirementsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 363 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 363 | return lhs == rhs; | 427 | 363 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeAliasRequirementsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 363 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 363 | return lhs == rhs; | 427 | 363 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolDependenciesRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 4.42k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 4.42k | return lhs == rhs; | 427 | 4.42k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27RequirementSignatureRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 423 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 423 | return lhs == rhs; | 427 | 423 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 216 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 216 | return lhs == rhs; | 427 | 216 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 3.91k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 3.91k | return lhs == rhs; | 427 | 3.91k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22StorageImplInfoRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24SetterAccessLevelRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasInitAccessorRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 10.8k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 10.8k | return lhs == rhs; | 427 | 10.8k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 90.8k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 90.8k | return lhs == rhs; | 427 | 90.8k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20NamingPatternRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 219 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 219 | return lhs == rhs; | 427 | 219 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParamSpecifierRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 84.6k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 84.6k | return lhs == rhs; | 427 | 84.6k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34AttachedPropertyWrapperTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 371 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 371 | return lhs == rhs; | 427 | 371 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 341 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 341 | return lhs == rhs; | 427 | 341 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 660 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 660 | return lhs == rhs; | 427 | 660 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 720 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 720 | return lhs == rhs; | 427 | 720 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperMutabilityRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 839 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 839 | return lhs == rhs; | 427 | 839 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DefaultArgumentInitContextRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentExprRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentTypeRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResultBuilderTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.37k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.37k | return lhs == rhs; | 427 | 1.37k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AttachedResultBuilderRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 2.80k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 2.80k | return lhs == rhs; | 427 | 2.80k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ResultTypeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.40k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.40k | return lhs == rhs; | 427 | 1.40k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ParseAbstractFunctionBodyRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.46k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.46k | return lhs == rhs; | 427 | 1.46k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckFunctionBodyRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.18k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.18k | return lhs == rhs; | 427 | 1.18k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsFunctionBodySkippedRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26NeedsNewVTableEntryRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 31.1k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 31.1k | return lhs == rhs; | 427 | 31.1k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15IsStaticRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19SimpleDidSetRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SelfAccessKindRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20EnumRawValuesRequestEvEEvE7isEqualERKS6_S9_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 5.58k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 5.58k | return lhs == rhs; | 427 | 5.58k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19BodyInitKindRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 168 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 168 | return lhs == rhs; | 427 | 168 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.16k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.16k | return lhs == rhs; | 427 | 1.16k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ActorIsolationRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 29.9k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 29.9k | return lhs == rhs; | 427 | 29.9k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveImplicitMemberRequestEvEEvE7isEqualERKS6_S9_ DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26FragileFunctionKindRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 3.66k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 3.66k | return lhs == rhs; | 427 | 3.66k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 844 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 844 | return lhs == rhs; | 427 | 844 | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ABIMembersRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 977 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 977 | return lhs == rhs; | 427 | 977 | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17AllMembersRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 539 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 539 | return lhs == rhs; | 427 | 539 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_48GetDistributedActorArgumentDecodingMethodRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_43GetDistributedActorInvocationDecoderRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49GetDistributedRemoteCallTargetInitFunctionRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_50GetDistributedActorSystemRemoteCallFunctionRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GetDistributedThunkRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40GetDistributedActorSystemPropertyRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36GetDistributedActorIDPropertyRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: DocComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27SemanticBriefCommentRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36PolymorphicEffectRequirementsRequestEvEEvE7isEqualERKS6_S9_ Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PolymorphicEffectKindRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.02k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.02k | return lhs == rhs; | 427 | 1.02k | } |
Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ConformanceHasEffectRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CallerSideDefaultArgExprRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE7isEqualERKS6_S9_ GenericSignature.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 775 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 775 | return lhs == rhs; | 427 | 775 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22IsNonUserModuleRequestEvEEvE7isEqualERKS6_S9_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleImplicitImportsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 980 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 980 | return lhs == rhs; | 427 | 980 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PrimarySourceFilesRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 840 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 840 | return lhs == rhs; | 427 | 840 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE7isEqualERKS6_S9_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 3.44k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 3.44k | return lhs == rhs; | 427 | 3.44k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GetImplicitSendableRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 913 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 913 | return lhs == rhs; | 427 | 913 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41GetDistributedActorImplicitCodableRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29HasImportsMatchingFlagRequestEvEEvE7isEqualERKS6_S9_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16SPIGroupsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 26.0k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 26.0k | return lhs == rhs; | 427 | 26.0k | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ModuleLibraryLevelRequestEvEEvE7isEqualERKS6_S9_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ParseTopLevelDeclsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.00k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.00k | return lhs == rhs; | 427 | 1.00k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExportedSourceFileRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 980 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 980 | return lhs == rhs; | 427 | 980 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22GetSourceFileAsyncNodeEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 280 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 280 | return lhs == rhs; | 427 | 280 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32LookupConformanceInModuleRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ModuleNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21LookupInModuleRequestEvEEvE7isEqualERKS6_S9_ NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 719 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 719 | return lhs == rhs; | 427 | 719 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE7isEqualERKS6_S9_ NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 15.8k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 15.8k | return lhs == rhs; | 427 | 15.8k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsCallAsFunctionNominalRequestEvEEvE7isEqualERKS6_S9_ NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38HasDynamicMemberLookupAttributeRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.05k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.05k | return lhs == rhs; | 427 | 1.05k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32SelfBoundsFromWhereClauseRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37SelfBoundsFromGenericSignatureRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24UnqualifiedLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19DirectLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CXXNamespaceMemberLookupEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ClangRecordMemberLookupEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22AnyObjectLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22QualifiedLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleQualifiedLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36UnderlyingTypeDeclsReferencedRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InheritedDeclsReferencedRequestEvEEvE7isEqualERKS6_S9_ OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LookupInfixOperatorRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 422 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 422 | return lhs == rhs; | 427 | 422 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27LookupPrefixOperatorRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPostfixOperatorRequestEvEEvE7isEqualERKS6_S9_ OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPrecedenceGroupRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 350 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 350 | return lhs == rhs; | 427 | 350 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DirectOperatorLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34DirectPrecedenceGroupLookupRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Pattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ExprPatternMatchRequestEvEEvE7isEqualERKS6_S9_ ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ConditionalRequirementsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 2.15k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 2.15k | return lhs == rhs; | 427 | 2.15k | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18TypeWitnessRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AssociatedConformanceRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ValueWitnessRequestEvEEvE7isEqualERKS6_S9_ ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37LookupAllConformancesInContextRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 1.10k | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 1.10k | return lhs == rhs; | 427 | 1.10k | } |
Unexecuted instantiation: RawComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17RawCommentRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE7isEqualERKS6_S9_ Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IsSingleValueStmtRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 844 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 844 | return lhs == rhs; | 427 | 844 | } |
Unexecuted instantiation: Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18BreakTargetRequestEvEEvE7isEqualERKS6_S9_ Unexecuted instantiation: Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ContinueTargetRequestEvEEvE7isEqualERKS6_S9_ TypeCheckRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RequirementRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 744 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 744 | return lhs == rhs; | 427 | 744 | } |
TypeRefinementContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40ExpandChildTypeRefinementContextsRequestEvEEvE7isEqualERKS6_S9_ Line | Count | Source | 425 | 598 | static bool isEqual(const RequestKey &lhs, const RequestKey &rhs) { | 426 | 598 | return lhs == rhs; | 427 | 598 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE7isEqualERKS6_S9_ |
428 | 429k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { |
429 | 429k | return rhs.isStorageEqual(lhs); |
430 | 429k | } Unexecuted instantiation: SwiftMaterializationUnit.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ClangSyntaxPrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: DeclAndTypePrinter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Frontend.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IDEInspectionFileRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ConstExtract.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ConstantValueInfoRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: GenClass.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: GenDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: GenDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: GenEnum.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: GenHeap.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: GenMeta.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22SymbolSourceMapRequestEvEEvE7isEqualERKS5_RKS6_ IRGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_12IRGenRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 3 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 3 | return rhs.isStorageEqual(lhs); | 430 | 3 | } |
SILGen.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 15 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 15 | return rhs.isStorageEqual(lhs); | 430 | 15 | } |
Common.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TangentStoredPropertyRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 24 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 24 | return rhs.isStorageEqual(lhs); | 430 | 24 | } |
Unexecuted instantiation: SILOptimizerRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18ASTLoweringRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: IDERequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26ResolveProtocolNameRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProvideDefaultImplForRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29CollectOverriddenDeclsRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: IDETypeChecking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24TypeRelationCheckRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Serialization.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: BuilderTransform.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PreCheckResultBuilderRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: CSApply.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE7isEqualERKS5_RKS6_ CSRanking.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32CompareDeclSpecializationRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 83 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 83 | return rhs.isStorageEqual(lhs); | 430 | 83 | } |
Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29EnumElementExprPatternRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE7isEqualERKS5_RKS6_ CSStep.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDeclRefinementOfRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 281 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 281 | return rhs.isStorageEqual(lhs); | 430 | 281 | } |
CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35HasUserDefinedDesignatedInitRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 159 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 159 | return rhs.isStorageEqual(lhs); | 430 | 159 | } |
CodeSynthesis.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_44AreAllStoredPropertiesDefaultInitableRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 38 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 38 | return rhs.isStorageEqual(lhs); | 430 | 38 | } |
Unexecuted instantiation: ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ConstraintSystem.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ClosureHasExplicitResultRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsDeclApplicableRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: LookupVisibleDecls.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: PreCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckAttr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35DistributedModuleIsAvailableRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckDistributed.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CheckDistributedFunctionRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ValidatePrecedenceGroupRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 27 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 27 | return rhs.isStorageEqual(lhs); | 430 | 27 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29SynthesizeMainFunctionRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 48 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 48 | return rhs.isStorageEqual(lhs); | 430 | 48 | } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckDeclObjC.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34TypeCheckObjCImplementationRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CheckRedeclarationRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 533 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 533 | return rhs.isStorageEqual(lhs); | 430 | 533 | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE7isEqualERKS5_RKS6_ TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ApplyAccessNoteRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 3.98k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 3.98k | return rhs.isStorageEqual(lhs); | 430 | 3.98k | } |
Unexecuted instantiation: TypeCheckDeclPrimary.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckExpr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18DefaultTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 117 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 117 | return rhs.isStorageEqual(lhs); | 430 | 117 | } |
Unexecuted instantiation: TypeCheckGeneric.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ExternalMacroDefinitionRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25CompilerPluginLoadRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckMacros.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckPattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18PatternTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 327 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 327 | return rhs.isStorageEqual(lhs); | 430 | 327 | } |
Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckPropertyWrapper.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckRequestFunctions.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21CustomAttrTypeRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PreCheckReturnStmtRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 181 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 181 | return rhs.isStorageEqual(lhs); | 430 | 181 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperLValuenessRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckStorage.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20ExpandAccessorMacrosEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 204 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 204 | return rhs.isStorageEqual(lhs); | 430 | 204 | } |
TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26TypeCheckSourceFileRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 27 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 27 | return rhs.isStorageEqual(lhs); | 430 | 27 | } |
Unexecuted instantiation: TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49CheckInconsistentImplementationOnlyImportsRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38CheckInconsistentSPIOnlyImportsRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36CheckInconsistentAccessLevelOnImportEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41CheckInconsistentWeakLinkedImportsRequestEvEEvE7isEqualERKS5_RKS6_ TypeChecker.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31InferredGenericSignatureRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 221 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 221 | return rhs.isStorageEqual(lhs); | 430 | 221 | } |
Unexecuted instantiation: IDETypeCheckingRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_46RootAndResultTypeOfKeypathDynamicMemberRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ClangImporter.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ObjCInterfaceAndImplementationRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Parser.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IDEInspectionSecondPassRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ParseRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationEncoderRecordArgumentFunctionRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_68GetDistributedTargetInvocationEncoderRecordReturnTypeFunctionRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_67GetDistributedTargetInvocationEncoderRecordErrorTypeFunctionRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_70GetDistributedTargetInvocationDecoderDecodeNextArgumentFunctionRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ASTContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_66GetDistributedTargetInvocationResultHandlerOnReturnFunctionRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30TypeEraserHasViableInitRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ResolveTypeEraserTypeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ResolveRawLayoutLikeTypeRequestEvEEvE7isEqualERKS5_RKS6_ Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SpecializeAttrTargetDeclRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 46 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 46 | return rhs.isStorageEqual(lhs); | 430 | 46 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36SerializeAttrGenericSignatureRequestEvEEvE7isEqualERKS5_RKS6_ Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39DifferentiableAttributeTypeCheckRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 81 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 81 | return rhs.isStorageEqual(lhs); | 430 | 81 | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DerivativeAttrOriginalDeclRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 72 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 72 | return rhs.isStorageEqual(lhs); | 430 | 72 | } |
Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29ImplementsAttrProtocolRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 6 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 6 | return rhs.isStorageEqual(lhs); | 430 | 6 | } |
Unexecuted instantiation: Attr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38InitAccessorReferencedVariablesRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33SemanticAvailableRangeAttrRequestEvEEvE7isEqualERKS5_RKS6_ Availability.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30SemanticUnavailableAttrRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.74k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.74k | return rhs.isStorageEqual(lhs); | 430 | 1.74k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ExpandMemberAttributeMacrosEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 37.9k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 37.9k | return rhs.isStorageEqual(lhs); | 430 | 37.9k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExpandPeerMacroRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 10.2k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 10.2k | return rhs.isStorageEqual(lhs); | 430 | 10.2k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionDeclRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ResolveMacroRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27GlobalActorAttributeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 19.7k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 19.7k | return rhs.isStorageEqual(lhs); | 430 | 19.7k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ThrownTypeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsAccessorTransparentRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericParamListRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23GenericSignatureRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 31.2k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 31.2k | return rhs.isStorageEqual(lhs); | 430 | 31.2k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ScopedImportLookupRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InheritedTypeRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ExtendedNominalRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 15 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 15 | return rhs.isStorageEqual(lhs); | 430 | 15 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31DefaultAndMaxAccessLevelRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ExtendedTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 184 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 184 | return rhs.isStorageEqual(lhs); | 430 | 184 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26PatternBindingEntryRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30RequiresOpaqueAccessorsRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36RequiresOpaqueModifyCoroutineRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25SynthesizeAccessorRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsABICompatibleOverrideRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 81 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 81 | return rhs.isStorageEqual(lhs); | 430 | 81 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsGetterMutatingRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23IsSetterMutatingRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26OpaqueReadOwnershipRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 109 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 109 | return rhs.isStorageEqual(lhs); | 430 | 109 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22OverriddenDeclsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 267 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 267 | return rhs.isStorageEqual(lhs); | 430 | 267 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23OpaqueResultTypeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_13IsObjCRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsFinalRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17IsMoveOnlyRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16IsDynamicRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30DynamicallyReplacedDeclRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 5.76k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 5.76k | return rhs.isStorageEqual(lhs); | 430 | 5.76k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36IsImplicitlyUnwrappedOptionalRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20InterfaceTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 133k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 133k | return rhs.isStorageEqual(lhs); | 430 | 133k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18AccessLevelRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23StoredPropertiesRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 32.1k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 32.1k | return rhs.isStorageEqual(lhs); | 430 | 32.1k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29InitAccessorPropertiesRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 106 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 106 | return rhs.isStorageEqual(lhs); | 430 | 106 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31MemberwiseInitPropertiesRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 85 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 85 | return rhs.isStorageEqual(lhs); | 430 | 85 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40StoredPropertiesAndMissingMembersRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 48 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 48 | return rhs.isStorageEqual(lhs); | 430 | 48 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30PropertyWrapperTypeInfoRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_14IsActorRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 16.9k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 16.9k | return rhs.isStorageEqual(lhs); | 430 | 16.9k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25IsDistributedActorRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 10.9k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 10.9k | return rhs.isStorageEqual(lhs); | 430 | 10.9k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21UnderlyingTypeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21StructuralTypeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28DefaultDefinitionTypeRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18EnumRawTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 33 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 33 | return rhs.isStorageEqual(lhs); | 430 | 33 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24HasMemberwiseInitRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 129 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 129 | return rhs.isStorageEqual(lhs); | 430 | 129 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31SynthesizeMemberwiseInitRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 72 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 72 | return rhs.isStorageEqual(lhs); | 430 | 72 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37ResolveEffectiveMemberwiseInitRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 201 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 201 | return rhs.isStorageEqual(lhs); | 430 | 201 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21HasDefaultInitRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 52 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 52 | return rhs.isStorageEqual(lhs); | 430 | 52 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28SynthesizeDefaultInitRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 9 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 9 | return rhs.isStorageEqual(lhs); | 430 | 9 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GlobalActorInstanceRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20GetDestructorRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21IsDefaultActorRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 63 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 63 | return rhs.isStorageEqual(lhs); | 430 | 63 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_39HasMissingDesignatedInitializersRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37InheritsSuperclassInitializersRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ClassAncestryFlagsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 114 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 114 | return rhs.isStorageEqual(lhs); | 430 | 114 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26CustomRefCountingOperationEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26HasCircularRawValueRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 3 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 3 | return rhs.isStorageEqual(lhs); | 430 | 3 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25InheritedProtocolsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 372 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 372 | return rhs.isStorageEqual(lhs); | 430 | 372 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolRequirementsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 21 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 21 | return rhs.isStorageEqual(lhs); | 430 | 21 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassTypeRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ProtocolRequiresClassRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 15 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 15 | return rhs.isStorageEqual(lhs); | 430 | 15 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ExistentialConformsToSelfRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_42HasSelfOrAssociatedTypeRequirementsRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29PrimaryAssociatedTypesRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29StructuralRequirementsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 24 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 24 | return rhs.isStorageEqual(lhs); | 430 | 24 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeAliasRequirementsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 3 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 3 | return rhs.isStorageEqual(lhs); | 430 | 3 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ProtocolDependenciesRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 8.56k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 8.56k | return rhs.isStorageEqual(lhs); | 430 | 8.56k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27RequirementSignatureRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.08k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.08k | return rhs.isStorageEqual(lhs); | 430 | 1.08k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36HasCircularInheritedProtocolsRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17HasStorageRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 10.6k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 10.6k | return rhs.isStorageEqual(lhs); | 430 | 10.6k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22StorageImplInfoRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24SetterAccessLevelRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22HasInitAccessorRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 5.63k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 5.63k | return rhs.isStorageEqual(lhs); | 430 | 5.63k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27DefaultInitializerIsolationEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 684 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 684 | return rhs.isStorageEqual(lhs); | 430 | 684 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20NamingPatternRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 39 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 39 | return rhs.isStorageEqual(lhs); | 430 | 39 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ParamSpecifierRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AttachedPropertyWrappersRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 28.0k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 28.0k | return rhs.isStorageEqual(lhs); | 430 | 28.0k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24CustomAttrNominalRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34AttachedPropertyWrapperTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 61 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 61 | return rhs.isStorageEqual(lhs); | 430 | 61 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41PropertyWrapperBackingPropertyTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 55 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 55 | return rhs.isStorageEqual(lhs); | 430 | 55 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PropertyWrapperAuxiliaryVariablesRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 157 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 157 | return rhs.isStorageEqual(lhs); | 430 | 157 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37PropertyWrapperInitializerInfoRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 184 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 184 | return rhs.isStorageEqual(lhs); | 430 | 184 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32PropertyWrapperMutabilityRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 283 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 283 | return rhs.isStorageEqual(lhs); | 430 | 283 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LazyStoragePropertyRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_33DefaultArgumentInitContextRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentExprRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26DefaultArgumentTypeRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResultBuilderTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 551 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 551 | return rhs.isStorageEqual(lhs); | 430 | 551 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AttachedResultBuilderRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 802 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 802 | return rhs.isStorageEqual(lhs); | 430 | 802 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ResultTypeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 2.13k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 2.13k | return rhs.isStorageEqual(lhs); | 430 | 2.13k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RenamedDeclRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_32ParseAbstractFunctionBodyRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.50k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.50k | return rhs.isStorageEqual(lhs); | 430 | 1.50k | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28TypeCheckFunctionBodyRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 292 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 292 | return rhs.isStorageEqual(lhs); | 430 | 292 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28IsFunctionBodySkippedRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26NeedsNewVTableEntryRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23FunctionOperatorRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 84 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 84 | return rhs.isStorageEqual(lhs); | 430 | 84 | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15IsStaticRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19SimpleDidSetRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SelfAccessKindRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20EnumRawValuesRequestEvEEvE7isEqualERKS5_RKS6_ Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_15InitKindRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 628 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 628 | return rhs.isStorageEqual(lhs); | 430 | 628 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19BodyInitKindRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 15 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 15 | return rhs.isStorageEqual(lhs); | 430 | 15 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30OperatorPrecedenceGroupRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 39 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 39 | return rhs.isStorageEqual(lhs); | 430 | 39 | } |
Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ActorIsolationRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 16.0k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 16.0k | return rhs.isStorageEqual(lhs); | 430 | 16.0k | } |
Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31ExpandMacroExpansionExprRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24ResolveMacroConformancesEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Decl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22MacroDefinitionRequestEvEEvE7isEqualERKS5_RKS6_ DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26FragileFunctionKindRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.93k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.93k | return rhs.isStorageEqual(lhs); | 430 | 1.93k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ParseMembersRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 2.50k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 2.50k | return rhs.isStorageEqual(lhs); | 430 | 2.50k | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17ABIMembersRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 213 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 213 | return rhs.isStorageEqual(lhs); | 430 | 213 | } |
DeclContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17AllMembersRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 42 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 42 | return rhs.isStorageEqual(lhs); | 430 | 42 | } |
Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_48GetDistributedActorArgumentDecodingMethodRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_43GetDistributedActorInvocationDecoderRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_49GetDistributedRemoteCallTargetInitFunctionRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_51GetDistributedRemoteCallArgumentInitFunctionRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_50GetDistributedActorSystemRemoteCallFunctionRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GetDistributedThunkRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40GetDistributedActorSystemPropertyRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: DistributedDecl.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36GetDistributedActorIDPropertyRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: DocComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27SemanticBriefCommentRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_36PolymorphicEffectRequirementsRequestEvEEvE7isEqualERKS5_RKS6_ Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28PolymorphicEffectKindRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 677 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 677 | return rhs.isStorageEqual(lhs); | 430 | 677 | } |
Unexecuted instantiation: Effects.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27ConformanceHasEffectRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31CallerSideDefaultArgExprRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LocalDiscriminatorsRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Expr.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ClosureEffectsRequestEvEEvE7isEqualERKS5_RKS6_ GenericSignature.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 347 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 347 | return rhs.isStorageEqual(lhs); | 430 | 347 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22IsNonUserModuleRequestEvEEvE7isEqualERKS5_RKS6_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28ModuleImplicitImportsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 9 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 9 | return rhs.isStorageEqual(lhs); | 430 | 9 | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25PrimarySourceFilesRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 72 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 72 | return rhs.isStorageEqual(lhs); | 430 | 72 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26MangleLocalTypeDeclRequestEvEEvE7isEqualERKS5_RKS6_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 14.7k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 14.7k | return rhs.isStorageEqual(lhs); | 430 | 14.7k | } |
Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26GetImplicitSendableRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 255 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 255 | return rhs.isStorageEqual(lhs); | 430 | 255 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_41GetDistributedActorImplicitCodableRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22ParseSourceFileRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_29HasImportsMatchingFlagRequestEvEEvE7isEqualERKS5_RKS6_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_16SPIGroupsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 14.6k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 14.6k | return rhs.isStorageEqual(lhs); | 430 | 14.6k | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ModuleLibraryLevelRequestEvEEvE7isEqualERKS5_RKS6_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ParseTopLevelDeclsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 231 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 231 | return rhs.isStorageEqual(lhs); | 430 | 231 | } |
Unexecuted instantiation: Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_25ExportedSourceFileRequestEvEEvE7isEqualERKS5_RKS6_ Module.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_22GetSourceFileAsyncNodeEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 12 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 12 | return rhs.isStorageEqual(lhs); | 430 | 12 | } |
NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_35ExpandSynthesizedMemberMacroRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 206 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 206 | return rhs.isStorageEqual(lhs); | 430 | 206 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ExpandExtensionMacrosEvEEvE7isEqualERKS5_RKS6_ NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40PotentialMacroExpansionsInContextRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 3.07k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 3.07k | return rhs.isStorageEqual(lhs); | 430 | 3.07k | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21SuperclassDeclRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30IsCallAsFunctionNominalRequestEvEEvE7isEqualERKS5_RKS6_ NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_38HasDynamicMemberLookupAttributeRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 435 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 435 | return rhs.isStorageEqual(lhs); | 430 | 435 | } |
Unexecuted instantiation: NameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_34HasDynamicCallableAttributeRequestEvEEvE7isEqualERKS5_RKS6_ OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_26LookupInfixOperatorRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 66 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 66 | return rhs.isStorageEqual(lhs); | 430 | 66 | } |
Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_27LookupPrefixOperatorRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPostfixOperatorRequestEvEEvE7isEqualERKS5_RKS6_ OperatorNameLookup.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28LookupPrecedenceGroupRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 33 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 33 | return rhs.isStorageEqual(lhs); | 430 | 33 | } |
Unexecuted instantiation: Pattern.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_23ExprPatternMatchRequestEvEEvE7isEqualERKS5_RKS6_ ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_30ConditionalRequirementsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 2.43k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 2.43k | return rhs.isStorageEqual(lhs); | 430 | 2.43k | } |
Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18TypeWitnessRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_28AssociatedConformanceRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_19ValueWitnessRequestEvEEvE7isEqualERKS5_RKS6_ ProtocolConformance.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_37LookupAllConformancesInContextRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 1.26k | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 1.26k | return rhs.isStorageEqual(lhs); | 430 | 1.26k | } |
Unexecuted instantiation: RawComment.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_17RawCommentRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: RequirementMachineRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_31AbstractGenericSignatureRequestEvEEvE7isEqualERKS5_RKS6_ Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_24IsSingleValueStmtRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 138 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 138 | return rhs.isStorageEqual(lhs); | 430 | 138 | } |
Unexecuted instantiation: Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18BreakTargetRequestEvEEvE7isEqualERKS5_RKS6_ Unexecuted instantiation: Stmt.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_21ContinueTargetRequestEvEEvE7isEqualERKS5_RKS6_ TypeCheckRequests.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_18RequirementRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 54 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 54 | return rhs.isStorageEqual(lhs); | 430 | 54 | } |
TypeRefinementContext.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_40ExpandChildTypeRefinementContextsRequestEvEEvE7isEqualERKS5_RKS6_ Line | Count | Source | 428 | 150 | static bool isEqual(const Request &lhs, const RequestKey &rhs) { | 429 | 150 | return rhs.isStorageEqual(lhs); | 430 | 150 | } |
Unexecuted instantiation: USRGeneration.cpp:_ZN4llvm12DenseMapInfoIN5swift9evaluator12_GLOBAL__N_110RequestKeyINS1_20USRGenerationRequestEvEEvE7isEqualERKS5_RKS6_ |
431 | | }; |
432 | | |
433 | | } // end namespace llvm |
434 | | |
435 | | #endif // SWIFT_AST_REQUEST_CACHE_H |